mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-25 18:34:32 +02:00
Fix for Python 3.6
This commit is contained in:
parent
b95b6b63f6
commit
2da7af10a4
1 changed files with 1 additions and 1 deletions
|
|
@ -363,7 +363,7 @@ class Database:
|
|||
]
|
||||
|
||||
@property
|
||||
def tables(self) -> List[Table]:
|
||||
def tables(self) -> List["Table"]:
|
||||
"A list of Table objects in this database"
|
||||
return [self[name] for name in self.table_names()]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue