Skip to content

Commit 01d3c9a

Browse files
committed
fix use of Self
1 parent 9587923 commit 01d3c9a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stdlib/importlib/util.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import importlib.machinery
22
import sys
33
import types
4-
from _typeshed import ReadableBuffer, Self
4+
from _typeshed import ReadableBuffer
55
from collections.abc import Callable
66
from importlib._bootstrap import module_from_spec as module_from_spec, spec_from_loader as spec_from_loader
77
from importlib._bootstrap_external import (
@@ -13,7 +13,7 @@ from importlib._bootstrap_external import (
1313
)
1414
from importlib.abc import Loader
1515
from types import TracebackType
16-
from typing_extensions import ParamSpec, deprecated
16+
from typing_extensions import ParamSpec, deprecated, Self
1717

1818
_P = ParamSpec("_P")
1919

0 commit comments

Comments
 (0)