Skip to content

Commit bfb70cd

Browse files
committed
fix repr
1 parent 8912e43 commit bfb70cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/zarr/storage/_obstore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def __str__(self) -> str:
7474
return f"object_store://{self.store}"
7575

7676
def __repr__(self) -> str:
77-
return f"{type(self)}({self})"
77+
return f"{type(self).__name__}({self})"
7878

7979
def __getstate__(self) -> dict[Any, Any]:
8080
state = self.__dict__.copy()

0 commit comments

Comments
 (0)