Delete some unused # noqa comments (#8639)

This commit is contained in:
Alex Waygood
2022-08-29 12:56:06 +01:00
committed by GitHub
parent c8a679657b
commit e2211cb420

View File

@@ -13,7 +13,7 @@ path = ospath
_FdOrAnyPath: TypeAlias = int | StrOrBytesPath
async def stat(
path: _FdOrAnyPath, # noqa: F811
path: _FdOrAnyPath,
*,
dir_fd: int | None = ...,
follow_symlinks: bool = ...,
@@ -39,21 +39,16 @@ async def replace(
executor: Any = ...,
) -> None: ...
async def remove(
path: StrOrBytesPath, *, dir_fd: int | None = ..., loop: AbstractEventLoop | None = ..., executor: Any = ... # noqa: F811
path: StrOrBytesPath, *, dir_fd: int | None = ..., loop: AbstractEventLoop | None = ..., executor: Any = ...
) -> None: ...
async def mkdir(
path: StrOrBytesPath, # noqa: F811
mode: int = ...,
*,
dir_fd: int | None = ...,
loop: AbstractEventLoop | None = ...,
executor: Any = ...,
path: StrOrBytesPath, mode: int = ..., *, dir_fd: int | None = ..., loop: AbstractEventLoop | None = ..., executor: Any = ...
) -> None: ...
async def makedirs(
name: StrOrBytesPath, mode: int = ..., exist_ok: bool = ..., *, loop: AbstractEventLoop | None = ..., executor: Any = ...
) -> None: ...
async def rmdir(
path: StrOrBytesPath, *, dir_fd: int | None = ..., loop: AbstractEventLoop | None = ..., executor: Any = ... # noqa: F811
path: StrOrBytesPath, *, dir_fd: int | None = ..., loop: AbstractEventLoop | None = ..., executor: Any = ...
) -> None: ...
async def removedirs(name: StrOrBytesPath, *, loop: AbstractEventLoop | None = ..., executor: Any = ...) -> None: ...