Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
martindurant committed Oct 26, 2024
1 parent 6e549fd commit ee9cb51
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fsspec/caching.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,9 @@ def _fetch(self, start: int | None, end: int | None) -> bytes:

# Fetch bytes (could be multiple consecutive blocks)
self.total_requested_bytes += send - sstart
logger.debug(f"MMap get blocks {_blocks[0]}-{_blocks[-1]} ({sstart}-{send})")
logger.debug(
f"MMap get blocks {_blocks[0]}-{_blocks[-1]} ({sstart}-{send})"
)
self.cache[sstart:send] = self.fetcher(sstart, send)

# Update set of cached blocks
Expand Down

0 comments on commit ee9cb51

Please sign in to comment.