Skip to content

Commit

Permalink
3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ludy87 committed Jun 6, 2024
1 parent a695ae7 commit 635ccdb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pyecotrend_ista/const.py
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
10 changes: 9 additions & 1 deletion src/pyecotrend_ista/pyecotrend_ista.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 635ccdb

Please sign in to comment.