Skip to content

Commit 6820515

Browse files
committed
Remove unneeded quotes.
1 parent 6c27c04 commit 6820515

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

admin_interface/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def check_installed_app(app, max_dj_version=None):
99
if max_dj_version is None:
1010
if app not in installed_apps:
1111
raise ImproperlyConfigured(
12-
"'{}' is required, " "add it to settings.INSTALLED_APPS.".format(app)
12+
f"'{app}' is required, add it to settings.INSTALLED_APPS."
1313
)
1414
elif dj_version < max_dj_version:
1515
if app not in installed_apps:

0 commit comments

Comments
 (0)