Closed rillig closed 5 years ago
wrong.warning <- function(key, values) { fields <- list() for (l in values) { value <- unlist(l) if (value != '') fields <- append(fields, 'yes') else fields <- append(fields, 'no') } fields }
The above code has been formatted using Ctrl+Alt+L. The variable assignments in the if statement should be indented one more step to the right.
if
Was this fixed along with our PR?
Yes, it was. I just forgot to mention it in the PR.
The above code has been formatted using Ctrl+Alt+L. The variable assignments in the
if
statement should be indented one more step to the right.