Skip to content

Commit 6f8d928

Browse files
author
Vasily Zakharov
committed
Fixed error in annotation
1 parent 3be6149 commit 6f8d928

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

stubs/pyaudio/pyaudio.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ class Stream:
106106
def read(self, num_frames: int, exception_on_overflow: bool = ...) -> bytes: ...
107107
def start_stream(self) -> None: ...
108108
def stop_stream(self) -> None: ...
109-
def write(self, frames: Sequence[bytes], num_frames: Optional[int] = ..., exception_on_underflow: bool = ...) -> None: ...
109+
def write(self, frames: bytes, num_frames: Optional[int] = ..., exception_on_underflow: bool = ...) -> None: ...
110110

111111
class PyAudio:
112112
def __init__(self) -> None: ...

0 commit comments

Comments
 (0)