mirror of
https://github.com/django/django.git
synced 2025-11-01 20:31:40 +00:00
Fixed #23395 -- Limited line lengths to 119 characters.
This commit is contained in:
parent
84b0a8d2aa
commit
b1e33ceced
130 changed files with 5259 additions and 1501 deletions
|
|
@ -16,5 +16,7 @@ class Command(BaseCommand):
|
|||
options["example"]
|
||||
# BaseCommand default option is available
|
||||
options['verbosity']
|
||||
assert isinstance(options['verbosity'], int), "verbosity option is not int, but %s" % type(options['verbosity'])
|
||||
assert (
|
||||
isinstance(options['verbosity'], int), "verbosity option is not int, but %s" % type(options['verbosity'])
|
||||
)
|
||||
self.stdout.write("All right, let's dance %s." % options["style"])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue