summaryrefslogtreecommitdiff
path: root/tests/user_commands
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-04-07 22:04:45 -0400
committerTim Graham <timograham@gmail.com>2016-04-08 10:12:33 -0400
commit92053acbb9160862c3e743a99ed8ccff8d4f8fd6 (patch)
tree50e7fd28a650f0e2352cf94f92e5a66d28a81988 /tests/user_commands
parentdf8d8d4292684d6ffa7474f1e201aed486f02b53 (diff)
downloaddjango-92053acbb9160862c3e743a99ed8ccff8d4f8fd6.tar.gz
Fixed E128 flake8 warnings in tests/.
Diffstat (limited to 'tests/user_commands')
-rw-r--r--tests/user_commands/management/commands/hal.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/user_commands/management/commands/hal.py b/tests/user_commands/management/commands/hal.py
index c7ea51c9e5..055f441ab4 100644
--- a/tests/user_commands/management/commands/hal.py
+++ b/tests/user_commands/management/commands/hal.py
@@ -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)