From 0d68646fdceb762f8ca1e1250629a7d5f2ff6750 Mon Sep 17 00:00:00 2001 From: Jennifer Richards Date: Wed, 15 May 2024 20:47:00 -0300 Subject: [PATCH] chore: suppress pyflakes check --- ietf/settings_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/settings_test.py b/ietf/settings_test.py index 962628514..024512a8d 100755 --- a/ietf/settings_test.py +++ b/ietf/settings_test.py @@ -63,7 +63,7 @@ REQUEST_PROFILE_STORE_ANONYMOUS_SESSIONS = False # Override loggers with a safer set in case things go to the log during testing. Specifically, # make sure there are no syslog loggers that might send things to a real syslog. -LOGGING["loggers"] = { +LOGGING["loggers"] = { # pyflakes:ignore 'django': { 'handlers': ['debug_console'], 'level': 'INFO',