Skip to content

Commit 6d2a3a1

Browse files
Apply ruff/flake8-implicit-str-concat rule ISC003
ISC003 Explicitly concatenated string should be implicitly concatenated
1 parent 8101eb4 commit 6d2a3a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xarray/plot/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -870,7 +870,7 @@ def _infer_interval_breaks(coord, axis=0, scale=None, check_monotonic=False):
870870
if (coord <= 0).any():
871871
raise ValueError(
872872
"Found negative or zero value in coordinates. "
873-
+ "Coordinates must be positive on logscale plots."
873+
"Coordinates must be positive on logscale plots."
874874
)
875875
coord = np.log10(coord)
876876

0 commit comments

Comments
 (0)