We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8181a0 commit 694bf6cCopy full SHA for 694bf6c
instrumentation/opentelemetry-instrumentation-pyramid/tests/pyramid_base_test.py
@@ -15,7 +15,10 @@
15
import pyramid.httpexceptions as exc
16
from pyramid.response import Response
17
from werkzeug.test import Client
18
-from werkzeug.wrappers import BaseResponse
+# opentelemetry-instrumentation-pyramid uses werkzeug==0.16.1 which has
19
+# werkzeug.wrappers.BaseResponse. This is not the case for newer versions of
20
+# werkzeug like the one lint uses.
21
+from werkzeug.wrappers import BaseResponse # pylint: disable=no-name-in-module
22
23
24
class InstrumentationTest:
0 commit comments