Skip to content

Commit

Permalink
PEP8ify + pyflakes
Browse files Browse the repository at this point in the history
  • Loading branch information
ask committed Sep 19, 2011
1 parent b7e6436 commit c8a7df4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions celery/utils/functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

try:
from collections import Sequence
except ImportError: # noqa
except ImportError:
# <= Py2.5
Sequence = (list, tuple)
Sequence = (list, tuple) # noqa

from celery.datastructures import LRUCache

Expand Down

0 comments on commit c8a7df4

Please sign in to comment.