1
0

Clarify list/set/dict/tuple comprehensions and enforce via flake8 (#6957)

* commit '509e381af':
  Clarify list/set/dict/tuple comprehensions and enforce via flake8 (#6957)
  changelog
  Increase MAX_EVENTS_BEHIND for replication clients
This commit is contained in:
Andrew Morgan
2020-03-24 13:16:43 +00:00
75 changed files with 253 additions and 277 deletions

View File

@@ -103,7 +103,7 @@ def main():
yaml.safe_dump(result, sys.stdout, default_flow_style=False)
rows = list(row for server, json in result.items() for row in rows_v2(server, json))
rows = [row for server, json in result.items() for row in rows_v2(server, json)]
cursor = connection.cursor()
cursor.executemany(