aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2024-06-07 20:02:13 +0100
committerGravatar Joe Banks <[email protected]>2024-06-07 21:00:18 +0100
commit23087e96428ec443c4f52781b59d4cdb050adfc2 (patch)
tree0536ea0dd7ceccca6a156f561c525ef0792b17e2 /pyproject.toml
parentUpdate manage.py to handle solely running in debug mode (diff)
Update taskipy start task to remove redundant --debug flag
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 73f15977..4d647855 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -73,7 +73,7 @@ select = ["ANN", "B", "C4", "D", "DJ", "DTZ", "E", "F", "ISC", "INT", "N", "PGH"
"pydis_site/apps/api/models/bot/off_topic_channel_name.py" = ["RUF001"]
[tool.taskipy.tasks]
-start = "python manage.py run --debug"
+start = "python manage.py run"
makemigrations = "python manage.py makemigrations"
django_shell = "python manage.py shell"
test = "coverage run manage.py test"