From 2bcf16b10c305a02489aec75e61c5d4728cd34b3 Mon Sep 17 00:00:00 2001 From: J0J0 Todos Date: Sat, 22 Apr 2023 08:23:38 +0200 Subject: [PATCH] Fix linter error in test_embedart --- test/test_embedart.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/test_embedart.py b/test/test_embedart.py index 23901cf34..91df8cb08 100644 --- a/test/test_embedart.py +++ b/test/test_embedart.py @@ -247,7 +247,8 @@ class EmbedartCliTest(TestHelper, FetchImageHelper): album = self.add_album_fixture() item = album.items()[0] self.mock_response('http://example.com/test.html', 'text/html') - self.run_command('embedart', '-y', '-u', 'http://example.com/test.html') + self.run_command('embedart', '-y', '-u', + 'http://example.com/test.html') mediafile = MediaFile(syspath(item.path)) self.assertFalse(mediafile.images)