mirror of https://github.com/django/django.git
Fixed several flake8 errors
This commit is contained in:
parent
f17b24e407
commit
2ca5fc55b0
|
@ -1,5 +1,3 @@
|
|||
import sys
|
||||
|
||||
from django.core.management.base import BaseCommand, CommandError
|
||||
from django.utils import six
|
||||
from django.db import connections, DEFAULT_DB_ALIAS, migrations
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
from optparse import make_option
|
||||
|
||||
from django.core.management.base import BaseCommand, CommandError
|
||||
from django.core.management.base import BaseCommand
|
||||
|
||||
|
||||
class Command(BaseCommand):
|
||||
|
@ -13,7 +13,7 @@ class Command(BaseCommand):
|
|||
)
|
||||
|
||||
def handle(self, *args, **options):
|
||||
example = options["example"]
|
||||
options["example"]
|
||||
# BaseCommand default option is available
|
||||
options['verbosity']
|
||||
self.stdout.write("All right, let's dance %s." % options["style"])
|
||||
|
|
Loading…
Reference in New Issue