Skip to content

Commit

Permalink
flakes
Browse files Browse the repository at this point in the history
  • Loading branch information
ask committed Sep 10, 2013
1 parent ce3455a commit a8d6ba6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion amqp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
error_for_code,
__all__ as _all_exceptions,
)
from .utils import promise
from .utils import promise # noqa

__all__ = [
'Connection',
Expand Down
2 changes: 1 addition & 1 deletion amqp/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def noop():
try:
from os import set_cloexec # Python 3.4?
except ImportError:
def set_cloexec(fd, cloexec):
def set_cloexec(fd, cloexec): # noqa
try:
FD_CLOEXEC = fcntl.FD_CLOEXEC
except AttributeError:
Expand Down

0 comments on commit a8d6ba6

Please sign in to comment.