Skip to content

Commit

Permalink
fix(ingest): fix typo in parsing list of groups (#9037)
Browse files Browse the repository at this point in the history
  • Loading branch information
mayurinehate authored Oct 18, 2023
1 parent 79f6556 commit 9bb0bf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metadata-ingestion/src/datahub/cli/specific/group_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def upsert(file: Path, override_editable: bool) -> None:
with get_default_graph() as emitter:
for group_config in group_configs:
try:
datahub_group = CorpGroup.parse_obj(config_dict)
datahub_group = CorpGroup.parse_obj(group_config)
for mcp in datahub_group.generate_mcp(
generation_config=CorpGroupGenerationConfig(
override_editable=override_editable, datahub_graph=emitter
Expand Down

0 comments on commit 9bb0bf2

Please sign in to comment.