diff options
| author | deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com> | 2024-08-29 08:57:48 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-29 08:57:48 +0000 |
| commit | 42ad135b25044bb1c7ab8a553f038c8da9de0f75 (patch) | |
| tree | cb765be2b57404e3e93c18e95bd41c427d08a918 /src/transform_lambda/transform_lambda.py | |
| parent | 48e7daec8b5435a696fe572fd51dcbc8f9604a2d (diff) | |
| download | de-project-bentley-42ad135b25044bb1c7ab8a553f038c8da9de0f75.tar.gz de-project-bentley-42ad135b25044bb1c7ab8a553f038c8da9de0f75.zip | |
style: format code with Autopep8, Black and Ruff Formatter
This commit fixes the style issues introduced in 48e7dae according to the output
from Autopep8, Black and Ruff Formatter.
Details: https://github.com/ajschofield/de-project-bentley/pull/107
Diffstat (limited to 'src/transform_lambda/transform_lambda.py')
| -rw-r--r-- | src/transform_lambda/transform_lambda.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/transform_lambda/transform_lambda.py b/src/transform_lambda/transform_lambda.py index 5ea8cf0..2739997 100644 --- a/src/transform_lambda/transform_lambda.py +++ b/src/transform_lambda/transform_lambda.py @@ -42,7 +42,7 @@ TABLES = [ "department", "currency", "design", - "payment_type" + "payment_type", ] @@ -66,14 +66,14 @@ def lambda_handler(event, context): "dim_staff": create_dim_staff(dict_of_df), "dim_design": create_dim_design(dict_of_df), "dim_transaction": create_dim_transaction(dict_of_df), - "dim_payment_type": create_dim_payment_type(dict_of_df) + "dim_payment_type": create_dim_payment_type(dict_of_df), } mutable_df_dict = { "fact_sales_order": create_fact_sales_order(dict_of_df), "fact_purchase_order": create_fact_purchase_orders(dict_of_df), "fact_payment": create_fact_payment(dict_of_df), - "dim_currency": create_dim_currency(dict_of_df) + "dim_currency": create_dim_currency(dict_of_df), } print(immutable_df_dict.values()) print(mutable_df_dict.values()) |
