Skip to content

Commit 635ccdb

Browse files
committed
3.2.0
1 parent a695ae7 commit 635ccdb

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

src/pyecotrend_ista/const.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "3.1.1"
1+
VERSION = "3.2.0"
22

33
BASE_URL = "https://api.prod.eed.ista.com/"
44
ACCOUNT_URL = BASE_URL + "account"

src/pyecotrend_ista/pyecotrend_ista.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,15 @@
66

77
import requests
88

9-
from .const import ACCOUNT_URL, CONSUMPTION_UNIT_DETAILS_URL, CONSUMPTIONS_URL, MAX_RETRIES, RETRY_DELAY, VERSION, DEMO_USER_TOKEN
9+
from .const import (
10+
ACCOUNT_URL,
11+
CONSUMPTION_UNIT_DETAILS_URL,
12+
CONSUMPTIONS_URL,
13+
DEMO_USER_TOKEN,
14+
MAX_RETRIES,
15+
RETRY_DELAY,
16+
VERSION,
17+
)
1018
from .exception_classes import Error, InternalServerError, LoginError, ServerError
1119
from .helper_object_de import CustomRaw
1220
from .login_helper import LoginHelper

0 commit comments

Comments
 (0)