From 5c977e3732d3136957428607d26c9e2cdaecbbff Mon Sep 17 00:00:00 2001 From: Matthieu DUVAL Date: Tue, 28 Feb 2023 18:01:21 +0100 Subject: [PATCH] Fix: georide tracker property method --- georideapilib/objects/GeoRideTracker.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/georideapilib/objects/GeoRideTracker.py b/georideapilib/objects/GeoRideTracker.py index 66362d6..229a944 100644 --- a/georideapilib/objects/GeoRideTracker.py +++ b/georideapilib/objects/GeoRideTracker.py @@ -462,7 +462,7 @@ class GeoRideTracker(metaclass=JsonMgtMetaClass): # pylint: disable=R0904,R0902 return self._ecall_crash_mode @property - def _ssistance_theft_activated(self): + def assistance_theft_activated(self): """ assistanceTheftActivated property """ return self._assistance_theft_activated diff --git a/setup.py b/setup.py index 6e8daa0..eec4930 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ CURRENT_DIR = os.path.dirname(__file__) setup( name='georideapilib', packages=['georideapilib', 'georideapilib.objects'], # this must be the same as the name above - version='0.9.3', + version='0.9.4', description='Lib to control GeoRide tracker devices with theire rest api', author='Matthieu DUVAL', author_email='georideapilib@duval-dev.fr',