Quellcode durchsuchen

PEP8ify + pyflakes

Ask Solem vor 13 Jahren
Ursprung
Commit
c8a7df4679
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2 2
      celery/utils/functional.py

+ 2 - 2
celery/utils/functional.py

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