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 9815e6c commit 78158e8Copy full SHA for 78158e8
instrumentation/opentelemetry-instrumentation-pyramid/tests/pyramid_base_test.py
@@ -15,7 +15,11 @@
15
import pyramid.httpexceptions as exc
16
from pyramid.response import Response
17
from werkzeug.test import Client
18
-from werkzeug.wrappers import BaseResponse
+
19
+# opentelemetry-instrumentation-pyramid uses werkzeug==0.16.1 which has
20
+# werkzeug.wrappers.BaseResponse. This is not the case for newer versions of
21
+# werkzeug like the one lint uses.
22
+from werkzeug.wrappers import BaseResponse # pylint: disable=no-name-in-module
23
24
25
class InstrumentationTest:
0 commit comments