Skip to content

Commit ea46f86

Browse files
committed
Fix lint
1 parent 8ff4c0a commit ea46f86

File tree

1 file changed

+3
-3
lines changed
  • opentelemetry-instrumentation/src/opentelemetry/instrumentation/auto_instrumentation

1 file changed

+3
-3
lines changed

opentelemetry-instrumentation/src/opentelemetry/instrumentation/auto_instrumentation/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
from logging import getLogger
1919
from os import environ, execl, getcwd
2020
from os.path import abspath, dirname, pathsep
21-
from shutil import which
2221
from re import sub
22+
from shutil import which
2323

2424
from pkg_resources import iter_entry_points
2525

@@ -44,7 +44,7 @@ def run() -> None:
4444
4545
These optional arguments will override the current value of the
4646
corresponding environment variable during the execution of the command.
47-
"""
47+
""",
4848
)
4949

5050
argument_otel_environment_variable = {}
@@ -61,7 +61,7 @@ def run() -> None:
6161
argument = sub(r"OTEL_(PYTHON_)?", "", attribute).lower()
6262

6363
parser.add_argument(
64-
f'--{argument}',
64+
f"--{argument}",
6565
required=False,
6666
)
6767
argument_otel_environment_variable[argument] = attribute

0 commit comments

Comments
 (0)