|
@@ -5,9 +5,9 @@ from threading import Lock
|
|
|
|
|
|
try:
|
|
try:
|
|
from collections import Sequence
|
|
from collections import Sequence
|
|
-except ImportError: # noqa
|
|
|
|
|
|
+except ImportError:
|
|
# <= Py2.5
|
|
# <= Py2.5
|
|
- Sequence = (list, tuple)
|
|
|
|
|
|
+ Sequence = (list, tuple) # noqa
|
|
|
|
|
|
from celery.datastructures import LRUCache
|
|
from celery.datastructures import LRUCache
|
|
|
|
|