PlexKodiConnect/resources/lib/plexnet/signalslot/__init__.py
2018-09-30 13:16:17 +02:00

10 lines
271 B
Python

try:
from .signal import Signal
from .slot import Slot
from .exceptions import *
except ImportError: # pragma: no cover
# Possible we are running from setup.py, in which case we're after
# the __version__ string only.
pass
__version__ = '0.1.1'