From 40511859daff13bc534f6699241c52fd5c93d7c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sondre=20Lilleb=C3=B8=20Gundersen?= Date: Fri, 26 Aug 2022 20:46:10 +0200 Subject: [PATCH] chore: Remove unused type ignore comment --- django_guid/log_filters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_guid/log_filters.py b/django_guid/log_filters.py index 1abc3db..d252846 100644 --- a/django_guid/log_filters.py +++ b/django_guid/log_filters.py @@ -18,5 +18,5 @@ def filter(self, record: 'LogRecord') -> bool: :param record: Log record :return: True """ - record.correlation_id = guid.get() # type: ignore[attr-defined] + record.correlation_id = guid.get() return True