From 57c295d537fa57880a6787aebb82a425f051e6e7 Mon Sep 17 00:00:00 2001 From: "Jens H. Nielsen" Date: Wed, 1 Feb 2023 16:14:24 +0100 Subject: [PATCH] Remove Mypy work around With the merge of https://github.com/open-telemetry/opentelemetry-python/pull/3143 this work around is no longer required and can be removed from the docs. --- content/en/docs/instrumentation/python/mypy.md | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/content/en/docs/instrumentation/python/mypy.md b/content/en/docs/instrumentation/python/mypy.md index 1da7d78de2bb..0671048f818e 100644 --- a/content/en/docs/instrumentation/python/mypy.md +++ b/content/en/docs/instrumentation/python/mypy.md @@ -21,14 +21,3 @@ Or, use a command-line switch: ```shell mypy --namespace-packages ``` - -## Using the `strict` option - -If you're using the `strict` option with mypy, and you're using the -OpenTelemetry Python SDK (instead of just the API), you'll need to also set the -following in your project configuration file: - -```toml -[mypy-opentelemetry.sdk.*] -implicit_reexport = True -```