diff --git a/edx_arch_experiments/config_watcher/signals/receivers.py b/edx_arch_experiments/config_watcher/signals/receivers.py index fb18963..b5e04a2 100644 --- a/edx_arch_experiments/config_watcher/signals/receivers.py +++ b/edx_arch_experiments/config_watcher/signals/receivers.py @@ -90,7 +90,7 @@ def _register_waffle_observation(*, model, short_name, fields): def report_waffle_change(*args, instance, created, **kwargs): try: _report_waffle_change(short_name, instance, created, fields) - except: # pylint: disable=bare-except + except: # noqa pylint: disable=bare-except # Log and suppress error so Waffle change can proceed log.exception(f"Failed to report change to waffle {short_name}") @@ -98,7 +98,7 @@ def report_waffle_change(*args, instance, created, **kwargs): def report_waffle_delete(*args, instance, **kwargs): try: _report_waffle_delete(short_name, instance) - except: # pylint: disable=bare-except + except: # noqa pylint: disable=bare-except log.exception(f"Failed to report deletion of waffle {short_name}")