Skip to content

Commit 9ac52cd

Browse files
committed
Add some noqa markers
1 parent 30fc4e3 commit 9ac52cd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cachecontrol/caches/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from textwrap import dedent
22

33
try:
4-
from .file_cache import FileCache
4+
from .file_cache import FileCache # noqa
55
except ImportError:
66
notice = dedent('''
77
NOTE: In order to use the FileCache you must have
@@ -12,7 +12,7 @@
1212

1313

1414
try:
15-
import redis
16-
from .redis_cache import RedisCache
15+
import redis # noqa
16+
from .redis_cache import RedisCache # noqa
1717
except ImportError:
1818
pass

0 commit comments

Comments
 (0)