~raoul-snyman/openlp/fix-linting

« back to all changes in this revision

Viewing changes to openlp/plugins/alerts/lib/alertsmanager.py

  • Committer: Raoul Snyman
  • Date: 2017-10-25 21:18:38 UTC
  • mfrom: (2780.1.2 refactorings-3)
  • Revision ID: raoul@snyman.info-20171025211838-be4wutkihlytvkk3
Merge in refactorings-3

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
from PyQt5 import QtCore
27
27
 
28
28
from openlp.core.common.i18n import translate
29
 
from openlp.core.common.mixins import OpenLPMixin, RegistryMixin
30
 
from openlp.core.common.registry import Registry, RegistryProperties
 
29
from openlp.core.common.mixins import LogMixin, RegistryProperties
 
30
from openlp.core.common.registry import Registry, RegistryBase
31
31
from openlp.core.common.settings import Settings
32
32
 
33
33
 
34
 
class AlertsManager(OpenLPMixin, RegistryMixin, QtCore.QObject, RegistryProperties):
 
34
class AlertsManager(QtCore.QObject, RegistryBase, LogMixin, RegistryProperties):
35
35
    """
36
36
    AlertsManager manages the settings of Alerts.
37
37
    """