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 bbe9769 commit 6347121Copy full SHA for 6347121
mypy.ini
@@ -17,4 +17,6 @@
17
strict_equality = True
18
strict_optional = True
19
no_implicit_optional = True
20
- no_implicit_reexport = True
+ no_implicit_reexport = True
21
+ # https://mypy.readthedocs.io/en/stable/running_mypy.html#follow-imports
22
+ follow_imports = silent
opentelemetry-api/tests/context/base_context.py
@@ -64,7 +64,7 @@ def test_attach(self):
64
self.assertEqual("yyy", context.get_value("a"))
65
66
with self.assertLogs(level=ERROR):
67
- context.detach("some garbage")
+ context.detach(token)
68
69
def test_detach_out_of_order(self):
70
t1 = context.attach(context.set_value("c", 1))
0 commit comments