move SmartDeviceException to SmartDevice, and remove types.py complet… (#95)

* move SmartDeviceException to SmartDevice, and remove types.py completely. fixes #94

* do not import skipIf anymore
This commit is contained in:
Teemu R
2017-10-07 17:41:51 +02:00
committed by GitHub
parent d22eceefae
commit 0b2e371e79
4 changed files with 9 additions and 9 deletions

View File

@@ -13,9 +13,8 @@ Module-specific errors are raised as `SmartDeviceException` and are expected
to be handled by the user of the library.
"""
# flake8: noqa
from .smartdevice import SmartDevice
from .smartdevice import SmartDevice, SmartDeviceException
from .smartplug import SmartPlug
from .types import SmartDeviceException
from .smartbulb import SmartBulb
from .protocol import TPLinkSmartHomeProtocol
from .discover import Discover