From 056b902cf9549969e193d5ba59bf16473a9f9baa Mon Sep 17 00:00:00 2001 From: Philip Ridout Date: Fri, 15 Mar 2019 20:47:47 +0000 Subject: [PATCH] PEP8 --- openlp/core/ui/firsttimewizard.py | 1 - tests/functional/openlp_core/ui/test_firsttimeform.py | 1 - 2 files changed, 2 deletions(-) diff --git a/openlp/core/ui/firsttimewizard.py b/openlp/core/ui/firsttimewizard.py index d80fb6013..b3aa042a4 100644 --- a/openlp/core/ui/firsttimewizard.py +++ b/openlp/core/ui/firsttimewizard.py @@ -26,7 +26,6 @@ from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import clean_button_text, is_macosx from openlp.core.common.i18n import translate -from openlp.core.common.settings import Settings from openlp.core.lib.ui import add_welcome_page from openlp.core.ui.icons import UiIcons diff --git a/tests/functional/openlp_core/ui/test_firsttimeform.py b/tests/functional/openlp_core/ui/test_firsttimeform.py index 0a5fe5a0f..554ae30b7 100644 --- a/tests/functional/openlp_core/ui/test_firsttimeform.py +++ b/tests/functional/openlp_core/ui/test_firsttimeform.py @@ -223,7 +223,6 @@ class TestFirstTimeForm(TestCase, TestMixin): mocked_theme_combo_box.findText.assert_called_once_with('Default Theme') mocked_theme_combo_box.setCurrentIndex(3) - @patch('openlp.core.ui.firsttimeform.Settings') @patch('openlp.core.ui.firsttimeform.QtWidgets.QWizard.accept') def test_accept_method(self, mocked_qwizard_accept, *args):