diff --git a/archive_query_log/legacy/download/iterable.py b/archive_query_log/legacy/download/iterable.py index 3024504e..db12a79d 100644 --- a/archive_query_log/legacy/download/iterable.py +++ b/archive_query_log/legacy/download/iterable.py @@ -35,7 +35,7 @@ def _check_raw_serps_paths(self): def _streams(self) -> Iterator[tuple[Path, IO[bytes]]]: files = self.path.glob("*.warc.gz") for file in files: - with file.open( "rb") as stream: + with file.open("rb") as stream: yield file, stream def __len__(self) -> int: