diff --git a/aiomonitor/__init__.py b/aiomonitor/__init__.py index dd49bc03..54a96758 100644 --- a/aiomonitor/__init__.py +++ b/aiomonitor/__init__.py @@ -1,4 +1,4 @@ -from .aiomonitor import Monitor +from .monitor import Monitor __all__ = ('Monitor',) __version__ = '0.0.2' diff --git a/aiomonitor/aiomonitor.py b/aiomonitor/monitor.py similarity index 100% rename from aiomonitor/aiomonitor.py rename to aiomonitor/monitor.py diff --git a/tests/test_monitor.py b/tests/test_monitor.py index 98d97e31..0c4b5b92 100644 --- a/tests/test_monitor.py +++ b/tests/test_monitor.py @@ -5,7 +5,7 @@ import time from aiomonitor import Monitor -from aiomonitor.aiomonitor import MONITOR_HOST, MONITOR_PORT +from aiomonitor.monitor import MONITOR_HOST, MONITOR_PORT @pytest.yield_fixture