~phill-ridout/openlp/display_fixes

« back to all changes in this revision

Viewing changes to openlp/plugins/alerts/alertsplugin.py

  • Committer: Tim Bentley
  • Author(s): Raoul Snyman
  • Date: 2018-10-27 05:53:47 UTC
  • mfrom: (2837.1.7 fix-circ-deps)
  • Revision ID: tim.bentley@gmail.com-20181027055347-ll2qcjoyrnrkrl1d
Remove the circular dependency problems in the custom slide plugin, and clean up the linting issues.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
from openlp.core.ui import AlertLocation
36
36
from openlp.core.ui.icons import UiIcons
37
37
from openlp.plugins.alerts.endpoint import api_alerts_endpoint, alerts_endpoint
38
 
from openlp.plugins.alerts.forms import AlertForm
39
 
from openlp.plugins.alerts.lib import AlertsManager, AlertsTab
 
38
from openlp.plugins.alerts.forms.alertform import AlertForm
 
39
from openlp.plugins.alerts.lib.alertsmanager import AlertsManager
 
40
from openlp.plugins.alerts.lib.alertstab import AlertsTab
40
41
from openlp.plugins.alerts.lib.db import init_schema
41
42
 
42
43
log = logging.getLogger(__name__)