From 4908e1ae096155c547995d1b719936f63ba805be Mon Sep 17 00:00:00 2001 From: J0J0 Todos Date: Tue, 28 Feb 2023 09:24:28 +0100 Subject: [PATCH] Fix flake8 issues in test_ui.py that were introduced in 27218a94. --- test/test_ui.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test_ui.py b/test/test_ui.py index a1e02aaae..d3ce4a560 100644 --- a/test/test_ui.py +++ b/test/test_ui.py @@ -709,10 +709,10 @@ class UpdateTest(_common.TestCase): correct_albumtypes = ["album", "live"] # Setting albumtypes does not set albumtype, currently. - # Using x[0] mirrors https://github.com/beetbox/mediafile/blob/057432ad53b3b84385e5582f69f44dc00d0a725d/mediafile.py#L1928 - correct_albumtype = correct_albumtypes[0] + # Using x[0] mirrors https://github.com/beetbox/mediafile/blob/057432ad53b3b84385e5582f69f44dc00d0a725d/mediafile.py#L1928 # noqa: E501 + correct_albumtype = correct_albumtypes[0] - album.albumtype = correct_albumtype + album.albumtype = correct_albumtype album.albumtypes = correct_albumtypes album.try_sync(write=True, move=False)