1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

run black

This commit is contained in:
Ben Cail
2022-11-28 11:22:12 -05:00
parent f992997fbe
commit e9c7695a43
3 changed files with 12 additions and 7 deletions

View File

@@ -168,7 +168,9 @@ class Settings:
except ImportError as exc:
# If the settings module cannot be imported, treat it as a configuration error.
if exc.name == self.SETTINGS_MODULE:
raise ImproperlyConfigured(f"Settings module {self.SETTINGS_MODULE} could not be imported") from exc
raise ImproperlyConfigured(
f"Settings module {self.SETTINGS_MODULE} could not be imported"
) from exc
raise
tuple_settings = (

View File

@@ -383,8 +383,8 @@ class ManagementUtility:
except ImproperlyConfigured as exc:
self.settings_exception = exc
# The following commands can be run even without a valid settings file configured
if subcommand not in {'startproject', 'startapp', 'makemessages'}:
sys.stderr.write(str(exc) + '\n')
if subcommand not in {"startproject", "startapp", "makemessages"}:
sys.stderr.write(str(exc) + "\n")
self.settings_exception = exc
if settings.configured: