From 57126e26f506b1baac37df57746f8aa01d1fcdd9 Mon Sep 17 00:00:00 2001 From: Ashutosh Goel Date: Thu, 17 Feb 2022 17:13:48 +0530 Subject: [PATCH] Formatting correction --- .../src/opentelemetry/util/http/__init__.py | 1 - .../tests/test_capture_custom_headers.py | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/util/opentelemetry-util-http/src/opentelemetry/util/http/__init__.py b/util/opentelemetry-util-http/src/opentelemetry/util/http/__init__.py index a7c8ebd2e8..7d53898008 100644 --- a/util/opentelemetry-util-http/src/opentelemetry/util/http/__init__.py +++ b/util/opentelemetry-util-http/src/opentelemetry/util/http/__init__.py @@ -18,7 +18,6 @@ from typing import Iterable from urllib.parse import urlparse, urlunparse - OTEL_PYTHON_CAPTURE_REQUEST_HEADERS = "OTEL_PYTHON_CAPTURE_REQUEST_HEADERS" OTEL_PYTHON_CAPTURE_RESPONSE_HEADERS = "OTEL_PYTHON_CAPTURE_RESPONSE_HEADERS" diff --git a/util/opentelemetry-util-http/tests/test_capture_custom_headers.py b/util/opentelemetry-util-http/tests/test_capture_custom_headers.py index 596d94cd9a..b07f50eeaf 100644 --- a/util/opentelemetry-util-http/tests/test_capture_custom_headers.py +++ b/util/opentelemetry-util-http/tests/test_capture_custom_headers.py @@ -16,11 +16,11 @@ from opentelemetry.test.test_base import TestBase from opentelemetry.util.http import ( + OTEL_PYTHON_CAPTURE_REQUEST_HEADERS, + OTEL_PYTHON_CAPTURE_RESPONSE_HEADERS, get_custom_headers, normalise_request_header_name, normalise_response_header_name, - OTEL_PYTHON_CAPTURE_REQUEST_HEADERS, - OTEL_PYTHON_CAPTURE_RESPONSE_HEADERS, )