Skip to content

Commit 3fcfa5a

Browse files
committed
Remove stringified annotations
1 parent e49481f commit 3fcfa5a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

asyncpg/pool.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def __new__(
3434
dct: dict[str, Any],
3535
*,
3636
wrap: bool = False,
37-
) -> "PoolConnectionProxyMeta":
37+
) -> PoolConnectionProxyMeta:
3838
if wrap:
3939
for attrname in dir(connection.Connection):
4040
if attrname.startswith('_') or attrname in dct:
@@ -82,7 +82,7 @@ class PoolConnectionProxy(connection._ConnectionProxy,
8282
__slots__ = ('_con', '_holder')
8383

8484
def __init__(
85-
self, holder: "PoolConnectionHolder", con: connection.Connection
85+
self, holder: PoolConnectionHolder, con: connection.Connection
8686
) -> None:
8787
self._con = con
8888
self._holder = holder

0 commit comments

Comments
 (0)