@@ -13,7 +13,7 @@ path = ospath
13
13
_FdOrAnyPath : TypeAlias = int | StrOrBytesPath
14
14
15
15
async def stat (
16
- path : _FdOrAnyPath , # noqa: F811
16
+ path : _FdOrAnyPath ,
17
17
* ,
18
18
dir_fd : int | None = ...,
19
19
follow_symlinks : bool = ...,
@@ -39,21 +39,16 @@ async def replace(
39
39
executor : Any = ...,
40
40
) -> None : ...
41
41
async def remove (
42
- path : StrOrBytesPath , * , dir_fd : int | None = ..., loop : AbstractEventLoop | None = ..., executor : Any = ... # noqa: F811
42
+ path : StrOrBytesPath , * , dir_fd : int | None = ..., loop : AbstractEventLoop | None = ..., executor : Any = ...
43
43
) -> None : ...
44
44
async def mkdir (
45
- path : StrOrBytesPath , # noqa: F811
46
- mode : int = ...,
47
- * ,
48
- dir_fd : int | None = ...,
49
- loop : AbstractEventLoop | None = ...,
50
- executor : Any = ...,
45
+ path : StrOrBytesPath , mode : int = ..., * , dir_fd : int | None = ..., loop : AbstractEventLoop | None = ..., executor : Any = ...
51
46
) -> None : ...
52
47
async def makedirs (
53
48
name : StrOrBytesPath , mode : int = ..., exist_ok : bool = ..., * , loop : AbstractEventLoop | None = ..., executor : Any = ...
54
49
) -> None : ...
55
50
async def rmdir (
56
- path : StrOrBytesPath , * , dir_fd : int | None = ..., loop : AbstractEventLoop | None = ..., executor : Any = ... # noqa: F811
51
+ path : StrOrBytesPath , * , dir_fd : int | None = ..., loop : AbstractEventLoop | None = ..., executor : Any = ...
57
52
) -> None : ...
58
53
async def removedirs (name : StrOrBytesPath , * , loop : AbstractEventLoop | None = ..., executor : Any = ...) -> None : ...
59
54
0 commit comments