Skip to content

Commit

Permalink
flakes
Browse files Browse the repository at this point in the history
  • Loading branch information
ask committed Jun 16, 2016
1 parent df624a5 commit 792a7ea
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions celery/five.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,15 @@
from types import ModuleType

# extends vine.five
from vine import five
from vine.five import * # noqa
from vine.five import __all__ as _all_five

# bloody flake8
items = five.items
bytes_if_py2 = five.bytes_if_py2
string_t = five.string_t

try:
from functools import reduce
except ImportError:
Expand Down
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
'worker_force_execv',
}


def configcheck_project_settings():
from celery.app.defaults import NAMESPACES, flatten
settings.update(dict(flatten(NAMESPACES)))
Expand Down
1 change: 1 addition & 0 deletions funtests/suite/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

log_color = False


@atexit.register
def teardown_testdb():
import os
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ def add_doc(m):

# -*- Installation Requires -*-


def strip_comments(l):
return l.split('#', 1)[0].strip()

Expand Down

0 comments on commit 792a7ea

Please sign in to comment.