Skip to content

Commit

Permalink
Fix code format
Browse files Browse the repository at this point in the history
  • Loading branch information
janheinrichmerker committed Nov 2, 2023
1 parent 5ac9fbb commit 13e6537
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion archive_query_log/legacy/download/iterable.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 13e6537

Please sign in to comment.