Undid some slightly weird code formatting by 'black'

pull/261/head
Simon Willison 2018-05-15 08:23:20 -05:00
rodzic 0a02517eac
commit 1c5e386a22
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 17E2DEA2588B7F52
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(