Skip to content

Commit 931bf74

Browse files
committed
Removed Trailing Whitespace
1 parent 1727e8d commit 931bf74

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/matplotlib/tests/test_datetime.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ def test_contourf(self):
211211

212212
@mpl.style.context("default")
213213
def test_errorbar(self):
214-
mpl.rcParams["date.converter"] = "concise"
214+
mpl.rcParams["date.converter"] = "concise"
215215
fig, (ax1, ax2, ax3, ax4) = plt.subplots(4, 1, layout="constrained")
216216
limit = 7
217217
start_date = datetime.datetime(2023, 1, 1)
@@ -226,20 +226,20 @@ def test_errorbar(self):
226226
x_value_error = 0.5
227227
y_value_error = 0.5
228228

229-
ax1.errorbar(x_dates, y_values,
229+
ax1.errorbar(x_dates, y_values,
230230
yerr=y_value_error,
231231
capsize=10,
232-
barsabove=True,
232+
barsabove=True,
233233
label='Data')
234-
ax2.errorbar(x_values, y_dates,
234+
ax2.errorbar(x_values, y_dates,
235235
xerr=x_value_error, yerr=y_date_error,
236236
errorevery=(1, 2),
237237
fmt='-o', label='Data')
238-
ax3.errorbar(x_dates, y_dates,
238+
ax3.errorbar(x_dates, y_dates,
239239
xerr=x_date_error, yerr=y_date_error,
240240
lolims=True, xlolims=True,
241241
label='Data')
242-
ax4.errorbar(x_dates, y_values,
242+
ax4.errorbar(x_dates, y_values,
243243
xerr=x_date_error, yerr=y_value_error,
244244
uplims=True, xuplims=True,
245245
label='Data')

0 commit comments

Comments
 (0)