Commit 2ca5fc55 authored by Alex Gaynor's avatar Alex Gaynor
Browse files

Fixed several flake8 errors

parent f17b24e4
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
import sys

from django.core.management.base import BaseCommand, CommandError
from django.utils import six
from django.db import connections, DEFAULT_DB_ALIAS, migrations
+2 −2
Original line number Diff line number Diff line
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"])
+3 −3

File changed.

Contains only whitespace changes.