diff --git a/selve/__init__.py b/selve/__init__.py index 0a14786..711b915 100644 --- a/selve/__init__.py +++ b/selve/__init__.py @@ -1,6 +1,4 @@ #!/usr/bin/python - -import time import serial from enum import Enum import logging @@ -110,7 +108,7 @@ def discover(self): while not hasattr(command, "ids") and retry_n <=num_retries: command.execute(self) retry_n += 1 - time.sleep(1) + #time.sleep(1) if not hasattr(command, "ids"): _LOGGER.info("Associated Devices not found") diff --git a/setup.py b/setup.py index 08ddc53..bbf2054 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setup( name='python-selve', # Required - version='1.3.0', # Required + version='1.3.1', # Required description='Python library for interfacing with selve devices using the USB-RF controller', # Required long_description=long_description, # Optional url='https://github.com/gpulido/python-selve', # Optional