We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8c007f commit 971fe3dCopy full SHA for 971fe3d
src/bedrock_ge/gi/mapper.py
@@ -204,7 +204,7 @@ def map_to_brgi_db(brgi_db_mapping: BedrockGIMapping) -> BedrockGIDatabase:
204
other_tables = {}
205
if brgi_db_mapping.Other:
206
for other_table_mapping in brgi_db_mapping.Other:
207
- other_table_df = other_table_mapping.data
+ other_table_df = other_table_mapping.data.copy()
208
other_table_df.insert(0, "project_uid", project_uid)
209
other_tables[other_table_mapping.table_name] = other_table_df
210
0 commit comments