Skip to content

Commit

Permalink
style(apis_ontology): make noqa comments adhere to style
Browse files Browse the repository at this point in the history
  • Loading branch information
b1rger committed Sep 23, 2024
1 parent 0183d78 commit 2b20140
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apis_ontology/management/commands/02_import_relations.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def import_relations():
if username:
user_cache[username], _ = User.objects.get_or_create(username=username)

l = len(relations) # noqa: E741
l = len(relations) # noqa: E741
p = 0

for id, relation in relations.items():
Expand Down
6 changes: 3 additions & 3 deletions apis_ontology/settings.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from apis_acdhch_default_settings.settings import * # noqa: F403
from apis_acdhch_default_settings.settings import * # noqa: F403

DEBUG = True

INSTALLED_APPS += [ # noqa: F405
INSTALLED_APPS += [ # noqa: F405
"apis_highlighter",
"django.contrib.postgres",
"apis_core.collections",
Expand Down Expand Up @@ -47,7 +47,7 @@

LANGUAGE_CODE = "de"

MIDDLEWARE += [ # noqa: F405
MIDDLEWARE += [ # noqa: F405
"auditlog.middleware.AuditlogMiddleware",
"simple_history.middleware.HistoryRequestMiddleware",
]
Expand Down

0 comments on commit 2b20140

Please sign in to comment.