Skip to content

Commit

Permalink
Fix formatting issues
Browse files Browse the repository at this point in the history
Closes #25
  • Loading branch information
RoTranDo committed Dec 12, 2023
1 parent b3b59c2 commit 0d715a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions anfema_django_testutils/contrib/fixtures/checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def check_config(app_configs=None, **kwargs):
elif not all([isinstance(i, str) for i in config["FIXTURE_DIRS"]]):
errors.append(
Error(
f"At least one item of FIXTURE_DIRS settings is not a string.",
"At least one item of FIXTURE_DIRS settings is not a string.",
id=f"{app_label}.E001",
obj="Improper Configuration",
),
Expand Down Expand Up @@ -68,7 +68,7 @@ def check_config(app_configs=None, **kwargs):
elif not all([isinstance(i, str) for i in config["FIXTURE_MEDIAFILE_DIRS"]]):
errors.append(
Error(
f"At least one item of FIXTURE_MEDIAFILE_DIRS settings is not a string.",
"At least one item of FIXTURE_MEDIAFILE_DIRS settings is not a string.",
id=f"{app_label}.E001",
obj="Improper Configuration",
),
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from . import fixture, media
from . import fixture, media # noqa: F401

0 comments on commit 0d715a8

Please sign in to comment.