Skip to content

Commit

Permalink
fix some imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Snapcase committed Jul 24, 2019
1 parent 2b25102 commit e9288fb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion script.service.hue/addon.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<addon id="script.service.hue" name="Hue Service" provider-name="zim514" version="0.7.3">
<addon id="script.service.hue" name="Hue Service" provider-name="zim514" version="0.7.4">
<requires>
<import addon="xbmc.python" version="2.26.0" />
<import addon="script.module.requests" version="2.22.0" />
Expand Down
4 changes: 1 addition & 3 deletions script.service.hue/resources/lib/AmbiGroup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@
from .language import get_string as _


class AmbiGroup(KodiGroup):


class AmbiGroup(KodiGroup.KodiGroup):
def onAVStarted(self):
logger.info("Ambilight AV Started. Group enabled: {} , isPlayingVideo: {}, isPlayingAudio: {}, self.mediaType: {},self.playbackType(): {}".format(self.kgroupID, self.enabled,self.isPlayingVideo(),self.isPlayingAudio(),self.mediaType,self.playbackType()))
logger.info("Ambilight Settings. Colours: {}, Interval: {}, transitionTime: {}".format(self.numColors,self.updateInterval,self.transitionTime))
Expand Down
2 changes: 1 addition & 1 deletion script.service.hue/resources/lib/KodiGroup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

import xbmc
from . import globals
import kodiHue
from .globals import logger
from . import kodiHue
from .qhue import QhueException

STATE_IDLE = 0
Expand Down

0 comments on commit e9288fb

Please sign in to comment.