-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #82 from spetlr-org/feature/remove-transformernc
Feature/remove transformernc
- Loading branch information
Showing
32 changed files
with
392 additions
and
538 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.1.0 | ||
3.0.0 |
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 was deleted.
Oops, something went wrong.
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,26 +1,20 @@ | ||
from .country_to_alphacode_transformer_nc import ( # noqa: F401 | ||
CountryToAlphaCodeTransformerNC, | ||
from .country_to_alphacode_transformer import ( # noqa: F401 | ||
CountryToAlphaCodeTransformer, | ||
) | ||
from .drop_oldest_duplicate_transformer import ( # noqa: F401 | ||
DropOldestDuplicatesTransformer, | ||
) | ||
from .dropColumnsTransformer_nc import DropColumnsTransformerNC # noqa: F401 | ||
from .generate_md5_column_transformer_nc import ( # noqa: F401 | ||
GenerateMd5ColumnTransformerNC, | ||
from .dropColumnsTransformer import DropColumnsTransformer # noqa: F401 | ||
from .generate_md5_column_transformer import GenerateMd5ColumnTransformer # noqa: F401 | ||
from .join_dataframes_transformer import JoinDataframesTransformer # noqa: F401 | ||
from .select_and_cast_columns_transformer import ( # noqa: F401 | ||
SelectAndCastColumnsTransformer, | ||
) | ||
from .join_dataframes_transformer import JoinDataframesTransformerNC # noqa: F401 | ||
from .select_and_cast_columns_transformer_nc import ( # noqa: F401 | ||
SelectAndCastColumnsTransformerNC, | ||
) | ||
from .selectColumnsTransformer_nc import SelectColumnsTransformerNC # noqa: F401 | ||
from .selectColumnsTransformer import SelectColumnsTransformer # noqa: F401 | ||
from .simple_dataframe_filter_transformer import ( # noqa: F401 | ||
DataFrameFilterTransformer, | ||
) | ||
from .simple_dataframe_filter_transformer_nc import ( # noqa: F401 | ||
DataFrameFilterTransformerNC, | ||
) | ||
from .simple_sql_transformer import SimpleSqlServerTransformer # noqa: F401 | ||
from .timezone_transformer_nc import TimeZoneTransformerNC # noqa: F401 | ||
from .timezone_transformer import TimeZoneTransformer # noqa: F401 | ||
from .union_transformer import UnionTransformer # noqa: F401 | ||
from .union_transformer_nc import UnionTransformerNC # noqa: F401 | ||
from .validfromto_transformer import ValidFromToTransformer # noqa: F401 |
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
10 changes: 6 additions & 4 deletions
10
...transformers/dropColumnsTransformer_nc.py → ...lr/transformers/dropColumnsTransformer.py
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
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
10 changes: 6 additions & 4 deletions
10
...ansformers/selectColumnsTransformer_nc.py → .../transformers/selectColumnsTransformer.py
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
Oops, something went wrong.