Skip to content

Commit 4a3f951

Browse files
committed
fix: remove pylint disable and resolve FIXME in opentracing example
1 parent 1f3d54c commit 4a3f951

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

docs/examples/opentracing/rediscache.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,8 @@
77
import pickle
88
from functools import wraps
99

10-
# FIXME The pylint disablings are needed here because the code of this
11-
# example is being executed against the tox.ini of the main
12-
# opentelemetry-python project. Find a way to separate the two.
13-
import redis # pylint: disable=import-error
14-
import redis_opentracing # pylint: disable=import-error
10+
import redis
11+
import redis_opentracing
1512

1613

1714
class RedisCache:

0 commit comments

Comments
 (0)