Undid some slightly weird code formatting by 'black'

csv
Simon Willison 2018-05-15 08:23:20 -05:00 zatwierdzone przez Simon Willison
rodzic 63aac537f2
commit 8a0bd68c39
1 zmienionych plików z 2 dodań i 10 usunięć

Wyświetl plik

@ -200,11 +200,7 @@ class TableView(RowTableShared):
"SELECT count(*) from sqlite_master WHERE type = 'view' and name=:n",
{"n": table},
)
)[
0
][
0
]
)[0][0]
)
view_definition = None
table_definition = None
@ -215,11 +211,7 @@ class TableView(RowTableShared):
'select sql from sqlite_master where name = :n and type="view"',
{"n": table},
)
)[
0
][
0
]
)[0][0]
else:
table_definition_rows = list(
await self.execute(