From 92053acbb9160862c3e743a99ed8ccff8d4f8fd6 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 7 Apr 2016 22:04:45 -0400 Subject: Fixed E128 flake8 warnings in tests/. --- tests/bash_completion/management/commands/test_command.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tests/bash_completion/management/commands/test_command.py') diff --git a/tests/bash_completion/management/commands/test_command.py b/tests/bash_completion/management/commands/test_command.py index d2adf91e5a..91ec36c2af 100644 --- a/tests/bash_completion/management/commands/test_command.py +++ b/tests/bash_completion/management/commands/test_command.py @@ -3,8 +3,7 @@ from django.core.management.base import BaseCommand class Command(BaseCommand): def add_arguments(self, parser): - parser.add_argument("--list", action="store_true", dest="list", - help="Print all options") + parser.add_argument("--list", action="store_true", dest="list", help="Print all options") def handle(self, *args, **options): pass -- cgit v1.3