more formatting fixes

Found by flake8.
This commit is contained in:
Sarah Hoffmann
2021-07-12 17:45:42 +02:00
parent b4fec57b6d
commit cf98cff2a1
21 changed files with 62 additions and 53 deletions

View File

@@ -61,7 +61,7 @@ def _setup_postgresql_features(conn):
"""
pg_version = conn.server_version_tuple()
return {
'has_index_non_key_column' : pg_version >= (11, 0, 0)
'has_index_non_key_column': pg_version >= (11, 0, 0)
}
class SQLPreprocessor: