Skip to content

Commit e2211cb

Browse files
authored
Delete some unused # noqa comments (#8639)
1 parent c8a6796 commit e2211cb

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

stubs/aiofiles/aiofiles/os.pyi

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ path = ospath
1313
_FdOrAnyPath: TypeAlias = int | StrOrBytesPath
1414

1515
async def stat(
16-
path: _FdOrAnyPath, # noqa: F811
16+
path: _FdOrAnyPath,
1717
*,
1818
dir_fd: int | None = ...,
1919
follow_symlinks: bool = ...,
@@ -39,21 +39,16 @@ async def replace(
3939
executor: Any = ...,
4040
) -> None: ...
4141
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 = ...
4343
) -> None: ...
4444
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 = ...
5146
) -> None: ...
5247
async def makedirs(
5348
name: StrOrBytesPath, mode: int = ..., exist_ok: bool = ..., *, loop: AbstractEventLoop | None = ..., executor: Any = ...
5449
) -> None: ...
5550
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 = ...
5752
) -> None: ...
5853
async def removedirs(name: StrOrBytesPath, *, loop: AbstractEventLoop | None = ..., executor: Any = ...) -> None: ...
5954

0 commit comments

Comments
 (0)