Skip to content

Commit e98975a

Browse files
f-string should be more efficient
1 parent c9f7a60 commit e98975a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/zarr/storage/logging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def log(self, hint: Any = "") -> Generator[None, None, None]:
8383
method = inspect.stack()[2].function
8484
op = f"{type(self._store).__name__}.{method}"
8585
if hint:
86-
op += f"({hint})"
86+
op = f"{op}({hint})"
8787
self.logger.info("Calling %s", op)
8888
start_time = time.time()
8989
try:

0 commit comments

Comments
 (0)