Skip to content

Commit

Permalink
hotfix: remove root key (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
nichmor authored Aug 23, 2024
1 parent d31e8f6 commit 83ac75a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parselmouth/internals/updater_merger.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def main(output_dir: str, channel: SupportedChannels, upload: bool):
partial_file = Path(output_dir_location) / filename

mapping_entry = IndexMapping.model_validate_json(partial_file.read_text())
existing_mapping_data.root.update(mapping_entry)
existing_mapping_data.root.update(mapping_entry.root)
total_new_files += 1

logging.info(f"Total new files {total_new_files}")
Expand Down

0 comments on commit 83ac75a

Please sign in to comment.