1 Commits

Author SHA1 Message Date
448d0ce6ef Fix exception bug 2019-11-02 17:12:41 +01:00
3 changed files with 3 additions and 4 deletions

View File

@@ -3,8 +3,6 @@
⚠️ this is not an official implementation
[![pypi_badge](https://img.shields.io/pypi/v/georideapilib?style=for-the-badge)](https://pypi.org/project/georideapilib/)
Official georide website: https://georide.fr/
This library can control your georide tracker tracker

View File

@@ -100,7 +100,8 @@ class GeorideSocket():
if self._on_locked_callback is not None:
self._on_locked_callback(data)
else:
self._initialised = True
self._initialised = True
def connect(self, auth_token):
""" connect to the georide socket"""

View File

@@ -19,7 +19,7 @@ CURRENT_DIR = os.path.dirname(__file__)
setup(
name='georideapilib',
packages=['georideapilib'], # this must be the same as the name above
version='0.4.3',
version='0.4.2',
description='Lib to control georide tracker devices with their rest api',
author='Matthieu DUVAL',
author_email='georideapilib@duval-dev.fr',