We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fabdc04 commit 505753dCopy full SHA for 505753d
xarray/tests/test_plot.py
@@ -107,7 +107,7 @@ def test_1d_x_y_kw(self):
107
108
for aa, (x, y) in enumerate(xy):
109
da.plot(x=x, y=y, ax=ax.flat[aa])
110
- ax.flat[aa].set_title('x=' + str(x) + ' | '+'y='+str(y))
+ ax.flat[aa].set_title('x=' + str(x) + ' | ' + 'y=' + str(y))
111
112
with raises_regex(ValueError, 'cannot'):
113
da.plot(x='z', y='z')
0 commit comments