From 14e1b33839afbf1c8fb1c4f94caf77bb99d82b96 Mon Sep 17 00:00:00 2001 From: soergeld Date: Mon, 27 Apr 2020 11:44:51 +0200 Subject: [PATCH] lines too long --- test/test_autotag.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/test/test_autotag.py b/test/test_autotag.py index b894a65f3..fcf2ee5b1 100644 --- a/test/test_autotag.py +++ b/test/test_autotag.py @@ -106,9 +106,12 @@ def _make_item(title, track, artist=u'some artist'): def _make_trackinfo(): return [ - TrackInfo(title=u'one', track_id=None, artist=u'some artist', length=1, index=1), - TrackInfo(title=u'two', track_id=None, artist=u'some artist', length=1, index=2), - TrackInfo(title=u'three', track_id=None, artist=u'some artist', length=1, index=3), + TrackInfo(title=u'one', track_id=None, artist=u'some artist', + length=1, index=1), + TrackInfo(title=u'two', track_id=None, artist=u'some artist', + length=1, index=2), + TrackInfo(title=u'three', track_id=None, artist=u'some artist', + length=1, index=3), ]