remove print

This commit is contained in:
Normann 2025-01-08 18:58:57 +01:00 committed by Andreas
parent 902a8cbacd
commit bfb8db6d56

View File

@ -109,7 +109,6 @@ class ElecPriceAkkudoktor(ElecPriceProvider):
date = to_datetime(self.start_datetime - to_duration("35 days"), as_string="YYYY-MM-DD")
last_date = to_datetime(self.end_datetime, as_string="YYYY-MM-DD")
url = f"{source}/prices?start={date}&end={last_date}&tz={self.config.timezone}"
print(url)
response = requests.get(url)
logger.debug(f"Response from {url}: {response}")
response.raise_for_status() # Raise an error for bad responses