-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add more types for function arguments and return values
- Loading branch information
Showing
4 changed files
with
58 additions
and
17 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
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
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
from typing import Union | ||
|
||
from dbt_artifacts_parser.parsers.catalog.catalog_v1 import CatalogV1 | ||
from dbt_artifacts_parser.parsers.manifest.manifest_v1 import ManifestV1 | ||
from dbt_artifacts_parser.parsers.manifest.manifest_v2 import ManifestV2 | ||
from dbt_artifacts_parser.parsers.manifest.manifest_v3 import ManifestV3 | ||
from dbt_artifacts_parser.parsers.manifest.manifest_v4 import ManifestV4 | ||
from dbt_artifacts_parser.parsers.manifest.manifest_v5 import ManifestV5 | ||
from dbt_artifacts_parser.parsers.manifest.manifest_v6 import ManifestV6 | ||
from dbt_artifacts_parser.parsers.manifest.manifest_v7 import ManifestV7 | ||
from dbt_artifacts_parser.parsers.manifest.manifest_v8 import ManifestV8 | ||
from dbt_artifacts_parser.parsers.manifest.manifest_v9 import ManifestV9 | ||
from dbt_artifacts_parser.parsers.manifest.manifest_v10 import ManifestV10 | ||
from dbt_artifacts_parser.parsers.manifest.manifest_v11 import ManifestV11 | ||
|
||
Manifest = Union[ | ||
ManifestV1, | ||
ManifestV2, | ||
ManifestV3, | ||
ManifestV4, | ||
ManifestV5, | ||
ManifestV6, | ||
ManifestV7, | ||
ManifestV8, | ||
ManifestV9, | ||
ManifestV10, | ||
ManifestV11, | ||
] | ||
|
||
# If a new version of Catalog is added, replace with `Union[CatalogV1, CatalogV2, ...]`. | ||
Catalog = CatalogV1 |