Skip to content

Commit 08b5763

Browse files
Fix string interpolation (#1998)
Fix typo in legacy string interpolation (`,` instead of `%`) by replacing with f-string.
1 parent f0dd375 commit 08b5763

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/zarr/store/remote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def __init__(
6969
self.path = url.path.rstrip("/")
7070
self._fs = url.fs
7171
else:
72-
raise ValueError("URL not understood, %s", url)
72+
raise ValueError(f"URL not understood, {url}")
7373
self.allowed_exceptions = allowed_exceptions
7474
# test instantiate file system
7575
if not self._fs.async_impl:

0 commit comments

Comments
 (0)