Skip to content

Commit 93271d4

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent a718301 commit 93271d4

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,4 +1,3 @@
1-
from typing import Literal
21
import importlib.machinery
32
import sys
43
import types
@@ -14,6 +13,7 @@ from importlib._bootstrap_external import (
1413
)
1514
from importlib.abc import Loader
1615
from types import TracebackType
16+
from typing import Literal
1717
from typing_extensions import ParamSpec, Self, deprecated
1818

1919
_P = ParamSpec("_P")
@@ -54,7 +54,7 @@ if sys.version_info >= (3, 12):
5454
self, exc_type: type[BaseException] | None, exc_val: BaseException | None, exc_tb: TracebackType | None
5555
) -> None: ...
5656
@property
57-
def override(self) -> Literal[-1, 1]: ... # undocumented
57+
def override(self) -> Literal[-1, 1]: ... # undocumented
5858

5959
if sys.version_info >= (3, 14):
6060
__all__ = [

0 commit comments

Comments
 (0)