Skip to content

Commit

Permalink
fixup!: quality
Browse files Browse the repository at this point in the history
  • Loading branch information
Rebecca Graber committed Sep 29, 2023
1 parent d62ca05 commit bc0097c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion openedx_events/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def _get_validated_signal_config(self, event_type, configuration):
signal = OpenEdxPublicSignal.get_signal_by_type(event_type)
except KeyError as exc:
raise ProducerConfigurationError(message=f"No OpenEdxPublicSignal of type: '{event_type}'.") from exc
for topic, topic_configuration in configuration.items():
for _, topic_configuration in configuration.items():
print(f"{topic_configuration=}")
if not isinstance(topic_configuration, dict):
raise ProducerConfigurationError(
Expand Down
1 change: 0 additions & 1 deletion test_utils/test_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,3 @@
'content-authoring-xblock-lifecycle': {'event_key_field': 'xblock_info.usage_key', 'enabled': True},
}
}

0 comments on commit bc0097c

Please sign in to comment.