Skip to content

Commit e5fde14

Browse files
committed
fix redundant import rename
1 parent 94d5778 commit e5fde14

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/structlog/_base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919

2020

2121
if sys.version_info >= (3, 11):
22-
from typing import Self as Self
22+
from typing import Self
2323
else:
24-
from typing_extensions import Self as Self
24+
from typing_extensions import Self
2525

2626

2727
class BoundLoggerBase:

0 commit comments

Comments
 (0)