Skip to content

Commit e004de4

Browse files
committed
Remove assert type
1 parent 302109e commit e004de4

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

stdlib/@tests/test_cases/check_functools.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,6 @@ def sd_fun(arg: object) -> str:
119119
def _(int_arg: int) -> str:
120120
return ""
121121

122-
assert_type(sd_fun, _SingleDispatchCallable[[object], str])
123-
124122
sd_fun.dispatch(42)
125123
sd_fun.dispatch("")
126124
sd_fun.dispatch(1, 2) # type: ignore

stubs/aiofiles/aiofiles/threadpool/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def open(
9999
) -> AiofilesContextManager[_UnknownAsyncBinaryIO]: ...
100100

101101
stdin: AsyncTextIndirectIOWrapper
102-
stdout: AsyncTextIndirectIOWrapper # type: ignore # ???
102+
stdout: AsyncTextIndirectIOWrapper
103103
stderr: AsyncTextIndirectIOWrapper
104104
stdin_bytes: AsyncIndirectBufferedIOBase
105105
stdout_bytes: AsyncIndirectBufferedIOBase

0 commit comments

Comments
 (0)