diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e26131618..99adbac3eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Adding escape call to fix [auto-instrumentation not producing spans on Windows](https://github.com/open-telemetry/opentelemetry-python/issues/2703). ([#1100](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1100)) - - `opentelemetry-instrumentation-grpc` narrow protobuf dependency to exclude protobuf >= 4 ([1109](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1109)) - cleanup type hints for textmap `Getter` and `Setter` classes diff --git a/opentelemetry-instrumentation/tests/test_utils.py b/opentelemetry-instrumentation/tests/test_utils.py index 946ab12fc6..461c2fefa2 100644 --- a/opentelemetry-instrumentation/tests/test_utils.py +++ b/opentelemetry-instrumentation/tests/test_utils.py @@ -151,4 +151,5 @@ def test_remove_current_directory_from_python_path_linux_only_path(self): actual_python_path = _python_path_without_directory( python_path, dir, path_separator ) - self.assertEqual(actual_python_path, python_path) \ No newline at end of file + self.assertEqual(actual_python_path, python_path) + \ No newline at end of file