Skip to content

Commit

Permalink
Apply ruff/flake8-implicit-str-concat rule ISC003
Browse files Browse the repository at this point in the history
ISC003 Explicitly concatenated string should be implicitly concatenated
  • Loading branch information
DimitriPapadopoulos committed Nov 6, 2024
1 parent 8101eb4 commit 6d2a3a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xarray/plot/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -870,7 +870,7 @@ def _infer_interval_breaks(coord, axis=0, scale=None, check_monotonic=False):
if (coord <= 0).any():
raise ValueError(
"Found negative or zero value in coordinates. "
+ "Coordinates must be positive on logscale plots."
"Coordinates must be positive on logscale plots."
)
coord = np.log10(coord)

Expand Down

0 comments on commit 6d2a3a1

Please sign in to comment.