Skip to content

Commit

Permalink
Fixed cyclic import.
Browse files Browse the repository at this point in the history
  • Loading branch information
Julius2342 committed May 22, 2020
1 parent a517c86 commit bf551a6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions examples/monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
import asyncio
import logging

from pyvlx import PyVLX
from pyvlx.log import PYVLXLOG
from pyvlx import PyVLX, PYVLXLOG


async def main(loop):
Expand Down
1 change: 1 addition & 0 deletions pyvlx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,6 @@

# flake8: noqa
from .pyvlx import PyVLX
from .log import PYVLXLOG
from .scene import Scene
from .scenes import Scenes
2 changes: 1 addition & 1 deletion pyvlx/node_updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from .lightening_device import LighteningDevice
from .opening_device import Blind, OpeningDevice
from .parameter import Intensity, Parameter, Position
from .pyvlx import PYVLXLOG
from .log import PYVLXLOG


class NodeUpdater:
Expand Down

0 comments on commit bf551a6

Please sign in to comment.