Skip to content

Commit 39f0239

Browse files
Fix test_style failures by removing superfluous f-string whitespace
1 parent dae0f28 commit 39f0239

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cf/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
)
9090

9191
x = ", ".join(_requires)
92-
_error0 = f"cf v{ __version__} requires the modules {x}. "
92+
_error0 = f"cf v{__version__} requires the modules {x}. "
9393

9494
try:
9595
import cfdm

cf/read_write/read.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -990,7 +990,7 @@ def read(
990990
if info:
991991
logger.info(
992992
f"{org_len} input field{_plural(org_len)} aggregated into "
993-
f"{n} field{ _plural(n)}"
993+
f"{n} field{_plural(n)}"
994994
) # pragma: no cover
995995

996996
# ----------------------------------------------------------------

0 commit comments

Comments
 (0)