From 42ad135b25044bb1c7ab8a553f038c8da9de0f75 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Thu, 29 Aug 2024 08:57:48 +0000 Subject: 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 --- src/transform_lambda/transform_lambda.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/transform_lambda/transform_lambda.py') 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()) -- cgit v1.2.3