Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop wrong variable annotations in BlobFilter.__call__
This fixes two mypy errors by removing the annotations of the filter_parts and blob_parts local variables as lists. They only need to be sequences (more precisely, they only need to be sized and iterable, they don't even need to support subscripting in the way __call__ uses them), and mypy is able to infer their type.
- Loading branch information