From 635ccdbef0ff58763c210fbc6c2bf04c79d843ba Mon Sep 17 00:00:00 2001 From: Ludy87 Date: Thu, 6 Jun 2024 04:11:44 +0200 Subject: [PATCH] 3.2.0 --- src/pyecotrend_ista/const.py | 2 +- src/pyecotrend_ista/pyecotrend_ista.py | 10 +++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/pyecotrend_ista/const.py b/src/pyecotrend_ista/const.py index 691508f..2ddc491 100644 --- a/src/pyecotrend_ista/const.py +++ b/src/pyecotrend_ista/const.py @@ -1,4 +1,4 @@ -VERSION = "3.1.1" +VERSION = "3.2.0" BASE_URL = "https://api.prod.eed.ista.com/" ACCOUNT_URL = BASE_URL + "account" diff --git a/src/pyecotrend_ista/pyecotrend_ista.py b/src/pyecotrend_ista/pyecotrend_ista.py index af6861f..86bff93 100644 --- a/src/pyecotrend_ista/pyecotrend_ista.py +++ b/src/pyecotrend_ista/pyecotrend_ista.py @@ -6,7 +6,15 @@ import requests -from .const import ACCOUNT_URL, CONSUMPTION_UNIT_DETAILS_URL, CONSUMPTIONS_URL, MAX_RETRIES, RETRY_DELAY, VERSION, DEMO_USER_TOKEN +from .const import ( + ACCOUNT_URL, + CONSUMPTION_UNIT_DETAILS_URL, + CONSUMPTIONS_URL, + DEMO_USER_TOKEN, + MAX_RETRIES, + RETRY_DELAY, + VERSION, +) from .exception_classes import Error, InternalServerError, LoginError, ServerError from .helper_object_de import CustomRaw from .login_helper import LoginHelper