Skip to content

Commit b327d81

Browse files
Space before unit symbol
From "SI Unit rules and style conventions": https://physics.nist.gov/cuu/Units/checklist.html There is a space between the numerical value and unit symbol, even when the value is used in an adjectival sense, except in the case of superscript units for plane angle.
1 parent e98975a commit b327d81

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/zarr/core/sync.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def sync(
133133

134134
finished, unfinished = wait([future], return_when=asyncio.ALL_COMPLETED, timeout=timeout)
135135
if len(unfinished) > 0:
136-
raise TimeoutError(f"Coroutine {coro} failed to finish in within {timeout}s")
136+
raise TimeoutError(f"Coroutine {coro} failed to finish in within {timeout} s")
137137
assert len(finished) == 1
138138
return_result = next(iter(finished)).result()
139139

src/zarr/storage/logging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def log(self, hint: Any = "") -> Generator[None, None, None]:
9191
yield
9292
finally:
9393
end_time = time.time()
94-
self.logger.info("Finished %s [%.2fs]", op, end_time - start_time)
94+
self.logger.info("Finished %s [%.2f s]", op, end_time - start_time)
9595

9696
@property
9797
def supports_writes(self) -> bool:

0 commit comments

Comments
 (0)