From 602f3daaf24dceed8e574b2c965a139ced8a04af Mon Sep 17 00:00:00 2001 From: betolink Date: Wed, 26 Jul 2023 11:42:23 -0500 Subject: [PATCH] adding a representation to the thin fsspec file wrapper --- earthaccess/store.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/earthaccess/store.py b/earthaccess/store.py index 55c42b5b..b08d37a6 100644 --- a/earthaccess/store.py +++ b/earthaccess/store.py @@ -37,6 +37,9 @@ def __reduce__(self) -> Any: self.f.__reduce__(), ) + def __repr__(self) -> str: + return str(self.f) + def _open_files( data_links: List[str],