From 9c05a951f028e230c40e63c1cd25f2957a5e0f2b Mon Sep 17 00:00:00 2001 From: Victor Mylle Date: Fri, 19 May 2023 19:26:10 +0200 Subject: [PATCH] Removed print statements --- EngieApi/EngieAPI.py | 2 -- setup.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/EngieApi/EngieAPI.py b/EngieApi/EngieAPI.py index 98c9bba..3f6be61 100755 --- a/EngieApi/EngieAPI.py +++ b/EngieApi/EngieAPI.py @@ -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" diff --git a/setup.py b/setup.py index e7b760c..c1b817d 100644 --- a/setup.py +++ b/setup.py @@ -2,6 +2,6 @@ from setuptools import find_packages, setup setup( name="EngieApi", - version="0.1.2", + version="0.1.3", packages=find_packages(), )