Adjust type hints for NonBlockingStreamReader()
This commit is contained in:
parent
86203a4b86
commit
172f00e4e9
1 changed files with 4 additions and 4 deletions
|
|
@ -9,7 +9,7 @@ import re
|
|||
import subprocess
|
||||
import time
|
||||
|
||||
from io import BufferedReader, TextIOWrapper
|
||||
from io import IOBase
|
||||
from queue import Queue, Empty
|
||||
from threading import Thread
|
||||
from typing import Any, Callable, Iterable
|
||||
|
|
@ -28,11 +28,11 @@ class NonBlockingStreamReader():
|
|||
## https://gist.github.com/EyalAr/7915597
|
||||
## https://stackoverflow.com/a/4896288
|
||||
|
||||
def __init__(self, stream: BufferedReader | TextIOWrapper):
|
||||
self.stream: BufferedReader | TextIOWrapper = stream
|
||||
def __init__(self, stream: IOBase):
|
||||
self.stream: IOBase = stream
|
||||
self.queue: Queue = Queue()
|
||||
|
||||
def populate_queue(stream: BufferedReader | TextIOWrapper, queue: Queue) -> None:
|
||||
def populate_queue(stream: IOBase, queue: Queue) -> None:
|
||||
"""Collect lines from stream and put them in queue."""
|
||||
while not stream.closed:
|
||||
try:
|
||||
|
|
|
|||
Loading…
Reference in a new issue