Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2c27a02

Browse files
committed
flake8 fixes
1 parent 986a0f9 commit 2c27a02

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

lib/matplotlib/tests/test_dates.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,10 @@ def test_concise_formatter_subsecond():
453453
locator = mdates.AutoDateLocator(interval_multiples=True)
454454
formatter = mdates.ConciseDateFormatter(locator)
455455
year_1996 = 9861.0
456-
strings = formatter.format_ticks([year_1996, year_1996 + 500 / mdates.MUSECONDS_PER_DAY, year_1996 + 900 / mdates.MUSECONDS_PER_DAY])
456+
strings = formatter.format_ticks([
457+
year_1996,
458+
year_1996 + 500 / mdates.MUSECONDS_PER_DAY,
459+
year_1996 + 900 / mdates.MUSECONDS_PER_DAY])
457460
assert strings == ['00:00', '00.0005', '00.0009']
458461

459462

0 commit comments

Comments
 (0)