-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ class BackupRelationalJson: | |
original_table_name: str | ||
original_primary_key: list[str] | ||
original_columns: list[str] | ||
table_name_mappings: dict[str, str] | ||
table_name_mappings: list[tuple[str, str]] | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
mikeknep
Author
Contributor
|
||
invented_table_names: list[str] | ||
|
||
|
||
|
Is this necessary given dictionaries are guaranteed to be ordered starting Python 3.7? https://mail.python.org/pipermail/python-dev/2017-December/151283.html