Skip to content

Commit

Permalink
flakes
Browse files Browse the repository at this point in the history
  • Loading branch information
ask committed Oct 31, 2016
1 parent 9ce1b1b commit c122150
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions celery/bin/call.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"""The ``celery call`` program used to send tasks from the command-line."""
from __future__ import absolute_import, unicode_literals
from kombu.utils.json import loads
from celery.bin.base import Command
Expand Down
3 changes: 2 additions & 1 deletion celery/bin/celery.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,8 @@
from celery.bin.amqp import amqp
from celery.bin.beat import beat
from celery.bin.call import call
from celery.bin.control import _RemoteControl, control, inspect, status
from celery.bin.control import _RemoteControl # noqa
from celery.bin.control import control, inspect, status
from celery.bin.events import events
from celery.bin.graph import graph
from celery.bin.list import list_
Expand Down
1 change: 1 addition & 0 deletions celery/bin/control.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"""The ``celery control``, ``. inspect`` and ``. status`` programs."""
from __future__ import absolute_import, unicode_literals
from kombu.utils.json import dumps
from kombu.utils.objects import cached_property
Expand Down
1 change: 1 addition & 0 deletions celery/bin/list.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"""The ``celery list bindings`` command, used to inspect queue bindings."""
from __future__ import absolute_import, unicode_literals
from celery.bin.base import Command

Expand Down
1 change: 1 addition & 0 deletions celery/bin/migrate.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"""The ``celery migrate`` command, used to filter and move messages."""
from __future__ import absolute_import, unicode_literals
from celery.bin.base import Command

Expand Down
1 change: 1 addition & 0 deletions celery/bin/purge.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"""The ``celery purge`` program, used to delete messages from queues."""
from __future__ import absolute_import, unicode_literals
from celery.five import keys
from celery.bin.base import Command
Expand Down
1 change: 1 addition & 0 deletions celery/bin/result.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"""The ``celery result`` program, used to inspect task results."""
from __future__ import absolute_import, unicode_literals
from celery.bin.base import Command

Expand Down
1 change: 1 addition & 0 deletions celery/bin/shell.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"""The ``celery shell`` program, used to start a REPL."""
from __future__ import absolute_import, unicode_literals
import os
import sys
Expand Down
1 change: 1 addition & 0 deletions celery/bin/upgrade.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"""The ``celery upgrade`` command, used to upgrade from previous versions."""
from __future__ import absolute_import, print_function, unicode_literals
import codecs
from celery.app import defaults
Expand Down

0 comments on commit c122150

Please sign in to comment.