We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93c22fd commit 26dd9b7Copy full SHA for 26dd9b7
3 files changed
config.py
@@ -828,8 +828,6 @@ def run_setup() -> None:
828
logger.debug("Begin database setup")
829
830
importlib.import_module("db")
831
- from django.core import management
832
-
833
- management.call_command("migrate")
+ importlib.import_module("django.core.management").call_command("migrate")
834
835
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