fix my lint errors

This commit is contained in:
Michael Brown 2018-06-07 11:05:41 -04:00
parent 7e5f5a0b6b
commit beef0d9dd2
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ class DbHelper
column_name = rc["column_name"]
result = connection.async_exec("SELECT #{column_name} FROM #{table_name} WHERE #{column_name} LIKE $1", args) rescue nil
if result&.ntuples > 0
found["#{table_name}.#{column_name}"] = result.map {|r| r[column_name]}
found["#{table_name}.#{column_name}"] = result.map { |r| r[column_name] }
end
end
found