Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improve type annotation in
iter_subproc
This commit changes the type of the `input`-parameter of `iter_subproc` from `List[bytes]` to `Iterable[bytes]` (wich includes `List[bytes]`). The previous annotation was unnecessarily restrictive and would lead to type-check errors if an iterator-object, e.g. a result of `iter(...)` was provided as `input`-parameter.
- Loading branch information