Compare commits

...

1 Commits

Author SHA1 Message Date
9c05a951f0 Removed print statements 2023-05-19 19:26:10 +02:00
2 changed files with 1 additions and 3 deletions

View File

@@ -30,7 +30,6 @@ class EngieAPI:
try:
with open("EngieCache.json", "r") as f:
cache = json.load(f)
print(cache)
except FileNotFoundError:
cache = {}
@@ -54,7 +53,6 @@ class EngieAPI:
values = []
for j in res.json()[0]["Points"]:
print(j)
# check if the Date is the same as the one requested, attention to the timezone
if datetime.strptime(j["Date"], date_format).date().strftime(
"%Y-%m-%d"

View File

@@ -2,6 +2,6 @@ from setuptools import find_packages, setup
setup(
name="EngieApi",
version="0.1.2",
version="0.1.3",
packages=find_packages(),
)