Skip to content

Commit d36e32e

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent b6b499d commit d36e32e

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

stdlib/os/__init__.pyi

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from typing import LiteralString
21
import sys
32
from _typeshed import (
43
AnyStr_co,
@@ -34,6 +33,7 @@ from typing import (
3433
Final,
3534
Generic,
3635
Literal,
36+
LiteralString,
3737
NoReturn,
3838
Protocol,
3939
TypeVar,
@@ -46,17 +46,16 @@ from typing_extensions import Self, TypeAlias, Unpack, deprecated
4646

4747
from . import path as _path
4848

49-
5049
# Re-export common definitions from os.path to reduce duplication
5150
from .path import (
52-
curdir as curdir,
53-
pardir as pardir,
54-
sep as sep,
5551
altsep as altsep,
56-
extsep as extsep,
57-
pathsep as pathsep,
52+
curdir as curdir,
5853
defpath as defpath,
5954
devnull as devnull,
55+
extsep as extsep,
56+
pardir as pardir,
57+
pathsep as pathsep,
58+
sep as sep,
6059
)
6160

6261
__all__ = [

0 commit comments

Comments
 (0)