diff options
| author | lian-manonog <lian.manonog@gmail.com> | 2024-08-27 09:30:34 +0100 |
|---|---|---|
| committer | lian-manonog <lian.manonog@gmail.com> | 2024-08-27 09:30:34 +0100 |
| commit | 72ebda950c84d7b519db9a236b35a7fafcbb1899 (patch) | |
| tree | 0a05ff5e42e8587c53fefa64eb86c6b1dad0d210 /src/dataframes.py | |
| parent | 14fcca02de9e0771df5ad38e092abc285cab172d (diff) | |
| download | de-project-bentley-72ebda950c84d7b519db9a236b35a7fafcbb1899.tar.gz de-project-bentley-72ebda950c84d7b519db9a236b35a7fafcbb1899.zip | |
wip: added a bracket in dataframes
Diffstat (limited to 'src/dataframes.py')
| -rw-r--r-- | src/dataframes.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dataframes.py b/src/dataframes.py index f2cae5d..d0479f1 100644 --- a/src/dataframes.py +++ b/src/dataframes.py @@ -115,9 +115,9 @@ def create_dim_location(dict_of_df): df_loc = ( dict_of_df["address"] .drop(labels=["created_at", "last_updated"], axis=1) - .rename(columns={"address_id": "location_id"}) + .rename(columns={"address_id": "location_id"})) return df_loc - + def create_dim_counterparty(dict_of_df): |
