fix Makefile dev entries

This commit is contained in:
rmanach 2023-09-23 07:16:37 +02:00
parent f86fae86ef
commit 7030b95dc5
2 changed files with 2 additions and 3 deletions

View File

@ -1,8 +1,8 @@
format: format:
@black mumui/*.py deployment/*.py @./venv/bin/black mumui/*.py deployment/*.py
lint: lint:
@ruff . @./venv/bin/ruff .
dev: dev:
rm -rf venv rm -rf venv

View File

@ -8,4 +8,3 @@ class DeploymentAdmin(admin.ModelAdmin):
admin.site.register(Deployment, DeploymentAdmin) admin.site.register(Deployment, DeploymentAdmin)