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 653c149 commit 4b2c1b6Copy full SHA for 4b2c1b6
opentelemetry-api/src/opentelemetry/propagate/__init__.py
@@ -121,7 +121,7 @@ def inject(
121
get_global_textmap().inject(carrier, context=context, setter=setter)
122
123
124
-propagators = []
+propagators = [] # type: ignore
125
126
# Single use variable here to hack black and make lint pass
127
environ_propagators = environ.get(
@@ -136,7 +136,7 @@ def inject(
136
logger.debug(
137
"OTEL_PROPAGATORS environment variable contains none, removing all propagators"
138
)
139
- propagators = []
+ propagators = []
140
break
141
try:
142
propagators.append( # type: ignore
0 commit comments