ruff: Fix M001 Unused noqa directive.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2022-10-28 21:24:55 -04:00
committed by Tim Abbott
parent adffad384c
commit 9d2d6c8eb7
4 changed files with 10 additions and 10 deletions

View File

@@ -1,8 +1,8 @@
try:
from django.conf import settings # noqa: F401
from analytics.models import * # noqa: F401, F403
from zerver.models import * # noqa: F401, F403
from analytics.models import * # noqa: F403
from zerver.models import * # noqa: F403
except Exception:
import traceback