From 45cd04777ebdf157f1df347a14f882a000ffd5d6 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos Orfanos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Tue, 21 May 2024 19:42:19 +0200 Subject: [PATCH] Update fsspec/caching.py Co-authored-by: Aaron Gokaslan --- fsspec/caching.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fsspec/caching.py b/fsspec/caching.py index 8634b6307..dec31c125 100644 --- a/fsspec/caching.py +++ b/fsspec/caching.py @@ -597,7 +597,7 @@ def __init__( self.data = dict(zip(offsets, blocks)) else: - self.data = dict() + self.data = {} def _fetch(self, start: int | None, stop: int | None) -> bytes: if start is None: