-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
57d57f9
commit 8a23c03
Showing
44 changed files
with
928 additions
and
697 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
from .main import Analyze | ||
from .main import Analyze |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
from .tables import Table | ||
from .tables import Table |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
from typing import Literal | ||
|
||
ImportType_Literals = Literal['not importable', | ||
'importable, but not interactively importable', | ||
'importable and interactive importable when he model is unlocked', | ||
'importable and interactive importable when he model is unlocked and locked',] | ||
ImportType_Literals = Literal[ | ||
"not importable", | ||
"importable, but not interactively importable", | ||
"importable and interactive importable when he model is unlocked", | ||
"importable and interactive importable when he model is unlocked and locked", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,20 @@ | ||
from dataclasses import dataclass | ||
|
||
from .table_constants import ImportType_Literals | ||
|
||
|
||
@dataclass | ||
class DatabaseTable: | ||
TableKey: str | ||
TableName: str | ||
ImportType: ImportType_Literals | ||
IsEmpty: bool | ||
|
||
|
||
|
||
@dataclass | ||
class FieldData: | ||
FieldKey: str | ||
FieldName: str | ||
Description: str | ||
UnitsStr: str | ||
isImportable: bool | ||
isImportable: bool |
Oops, something went wrong.