From 40c0c9aa69a605a8c2962f16c81127513c340b90 Mon Sep 17 00:00:00 2001 From: Matthieu DUVAL Date: Mon, 27 Feb 2023 20:05:16 +0100 Subject: [PATCH] Fixgitemail mispell --- georideapilib/objects/GeoRideAccount.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/georideapilib/objects/GeoRideAccount.py b/georideapilib/objects/GeoRideAccount.py index 7bed717..0996421 100644 --- a/georideapilib/objects/GeoRideAccount.py +++ b/georideapilib/objects/GeoRideAccount.py @@ -11,7 +11,7 @@ class GeoRideAccount: """ Account object representation """ def __init__(self, account_id, email, is_admin, auth_token): self._account_id = account_id - self._email = emailgit + self._email = email self._is_admin = is_admin self._auth_token = auth_token diff --git a/setup.py b/setup.py index c85f5cc..8d5a023 100644 --- a/setup.py +++ b/setup.py @@ -19,13 +19,13 @@ 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.1', + version='0.9.2', description='Lib to control GeoRide tracker devices with theire rest api', author='Matthieu DUVAL', author_email='georideapilib@duval-dev.fr', # use the URL to the github repo url='https://github.com/hacf/georide-api', - download_url='https://codeload.github.com/hacf/georide-api/tar.gz/0.9.1', + download_url='https://codeload.github.com/hacf/georide-api/tar.gz/0.9.2', keywords=['rest', 'georide', 'api', 'grutier', 'GeoRide'], # arbitrary keywords classifiers=[], install_requires=["python-socketio[client]==4.6.1"],