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 ⚠️ 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/ Official georide website: https://georide.fr/
This library can control your georide tracker tracker This library can control your georide tracker tracker

View File

@@ -100,6 +100,7 @@ class GeorideSocket():
if self._on_locked_callback is not None: if self._on_locked_callback is not None:
self._on_locked_callback(data) self._on_locked_callback(data)
else: else:
self._initialised = True self._initialised = True
def connect(self, auth_token): def connect(self, auth_token):

View File

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