2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-12 18:15:40 +00:00

Fix issues with circular imports

This commit is contained in:
Oliver Walters
2020-09-17 22:44:17 +10:00
parent 303db293b7
commit 95c5c4b575
7 changed files with 36 additions and 11 deletions

View File

@ -108,6 +108,14 @@ def superuser(c):
manage(c, 'createsuperuser', pty=True)
@task
def check(c):
"""
Check validity of django codebase
"""
manage(c, "check")
@task
def migrate(c):
"""