diff --git a/setup.cfg b/setup.cfg index 7b4bf5a3c..2abc34df1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,3 +1,4 @@ [pep8] exclude=resources.py,vlc.py max-line-length = 120 +ignore = E402 diff --git a/tests/functional/openlp_plugins/songs/test_wordsofworshipimport.py b/tests/functional/openlp_plugins/songs/test_wordsofworshipimport.py index 26a212c76..bcc0527f4 100644 --- a/tests/functional/openlp_plugins/songs/test_wordsofworshipimport.py +++ b/tests/functional/openlp_plugins/songs/test_wordsofworshipimport.py @@ -48,5 +48,5 @@ class TestWordsOfWorshipFileImport(SongImportTestHelper): self.file_import([os.path.join(TEST_PATH, 'When morning gilds the skies.wsg')], self.load_external_result_data(os.path.join(TEST_PATH, 'When morning gilds the skies.json'))) self.file_import([os.path.join(TEST_PATH, 'Holy Holy Holy Lord God Almighty.wow-song')], - self.load_external_result_data(os.path.join(TEST_PATH, - 'Holy Holy Holy Lord God Almighty.json'))) + self.load_external_result_data(os.path.join(TEST_PATH, + 'Holy Holy Holy Lord God Almighty.json')))