Skip to content

Commit 505753d

Browse files
author
dcherian
committed
flake8 fix.
1 parent fabdc04 commit 505753d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xarray/tests/test_plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def test_1d_x_y_kw(self):
107107

108108
for aa, (x, y) in enumerate(xy):
109109
da.plot(x=x, y=y, ax=ax.flat[aa])
110-
ax.flat[aa].set_title('x=' + str(x) + ' | '+'y='+str(y))
110+
ax.flat[aa].set_title('x=' + str(x) + ' | ' + 'y=' + str(y))
111111

112112
with raises_regex(ValueError, 'cannot'):
113113
da.plot(x='z', y='z')

0 commit comments

Comments
 (0)