mirror of
https://github.com/django/django.git
synced 2025-08-03 10:34:04 +00:00
Fixed E128 flake8 warnings in tests/.
This commit is contained in:
parent
df8d8d4292
commit
92053acbb9
148 changed files with 2073 additions and 2248 deletions
|
@ -5,10 +5,8 @@ class Command(BaseCommand):
|
|||
help = "Useless command."
|
||||
|
||||
def add_arguments(self, parser):
|
||||
parser.add_argument('args', metavar='app_label', nargs='*',
|
||||
help='Specify the app label(s) to works on.')
|
||||
parser.add_argument('--empty', action='store_true', dest='empty', default=False,
|
||||
help="Do nothing.")
|
||||
parser.add_argument('args', metavar='app_label', nargs='*', help='Specify the app label(s) to works on.')
|
||||
parser.add_argument('--empty', action='store_true', dest='empty', default=False, help="Do nothing.")
|
||||
|
||||
def handle(self, *app_labels, **options):
|
||||
app_labels = set(app_labels)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue