mirror of
https://github.com/apache/superset.git
synced 2026-04-19 16:14:52 +00:00
[ci] Deprecate flake8 (#8409)
* [ci] Deprecate flake8 * Addressing @villebro's comments
This commit is contained in:
committed by
Maxime Beauchemin
parent
a19990185d
commit
9fc37ea9f1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user