We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3184b7b + 26dd9b7 commit 596cf1cCopy full SHA for 596cf1c
3 files changed
config.py
@@ -963,8 +963,6 @@ def run_setup() -> None:
963
logger.debug("Begin database setup")
964
965
importlib.import_module("db")
966
- from django.core import management
967
-
968
- management.call_command("migrate")
+ importlib.import_module("django.core.management").call_command("migrate")
969
970
logger.debug("Database setup completed")
pyproject.toml
@@ -5,7 +5,7 @@ dev = [
5
{ include-group = "test" },
6
{ include-group = "type-check" },
7
]
8
-lint-format = ["ccft-pymarkdown>=2.0", "ruff>=0.9"]
+lint-format = ["ccft-pymarkdown>=2.0", "ruff>=0.12"]
9
main = [
10
"asyncstdlib>=3.13",
11
"beautifulsoup4>=4.12",
0 commit comments