Allow --force without argument

This commit is contained in:
Georg Krause 2022-09-14 13:49:25 +02:00
parent 4e6f57e3da
commit d3ae08c200
No known key found for this signature in database
GPG Key ID: 2970D504B2183D22
1 changed files with 1 additions and 0 deletions

View File

@ -16,6 +16,7 @@ class Command(BaseCommand):
def add_arguments(self, parser):
parser.add_argument(
"--force",
action="store_true",
default=False,
help="Disable dry run mode and apply pruning for real on the database",
)