Skip to content

Commit 6f0fa29

Browse files
committed
And more
1 parent 438c86d commit 6f0fa29

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

pylint_django/checkers/django_installed.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,14 @@ class DjangoInstalledChecker(BaseChecker):
1414
f"F{BASE_ID}01": (
1515
"Django is not available on the PYTHONPATH",
1616
"django-not-available",
17-
"Django could not be imported by the pylint-django plugin, so most Django related " "improvements to pylint will fail.",
17+
"Django could not be imported by the pylint-django plugin, so most Django related "
18+
"improvements to pylint will fail.",
1819
),
1920
f"W{BASE_ID}99": (
2021
"Placeholder message to prevent disabling of checker",
2122
"django-not-available-placeholder",
22-
"PyLint does not recognise checkers as being enabled unless they have at least" " one message which is not fatal...",
23+
"PyLint does not recognise checkers as being enabled unless they have at least"
24+
" one message which is not fatal...",
2325
),
2426
}
2527

pylint_django/checkers/foreign_key_strings.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ class ForeignKeyStringsChecker(BaseChecker):
4646
msgs = {
4747
# pylint: disable=implicit-str-concat
4848
f"E{BASE_ID}10": (
49-
"Django was not configured. For more information run " "pylint --load-plugins=pylint_django --help-msg=django-not-configured",
49+
"Django was not configured. For more information run "
50+
"pylint --load-plugins=pylint_django --help-msg=django-not-configured",
5051
"django-not-configured",
5152
_LONG_MESSAGE,
5253
),

0 commit comments

Comments
 (0)