Skip to content

Commit

Permalink
Replace tuple with Tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
Pliner committed Sep 7, 2024
1 parent 208073d commit 0cffd90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/opentelemetry/instrumentation/asyncpg_listen/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import timeit
from typing import Collection
from typing import Collection, Tuple

import asyncpg_listen
import wrapt
Expand All @@ -11,7 +11,7 @@
from .package import _instruments
from .version import __version__

__all__: tuple[str, ...] = ("AsyncpgListenInstrumentor",)
__all__: Tuple[str, ...] = ("AsyncpgListenInstrumentor",)


class AsyncpgListenInstrumentor(BaseInstrumentor):
Expand Down

0 comments on commit 0cffd90

Please sign in to comment.