mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Fixed several flake8 errors
This commit is contained in:
parent
f17b24e407
commit
2ca5fc55b0
3 changed files with 5 additions and 7 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue