[ci] Deprecate flake8 (#8409)

* [ci] Deprecate flake8

* Addressing @villebro's comments
This commit is contained in:
John Bodley
2019-10-18 14:44:27 -07:00
committed by Maxime Beauchemin
parent a19990185d
commit 9fc37ea9f1
234 changed files with 702 additions and 647 deletions

View File

@@ -44,5 +44,5 @@ class ExasolEngineSpec(BaseEngineSpec):
data = super().fetch_data(cursor, limit)
# Lists of `pyodbc.Row` need to be unpacked further
if data and type(data[0]).__name__ == "Row":
data = [[value for value in row] for row in data]
data = [tuple(row) for row in data]
return data