Skip to content

Commit

Permalink
rimosso debug per troppe richieste
Browse files Browse the repository at this point in the history
  • Loading branch information
Bobsilvio committed Sep 17, 2024
1 parent ebd0ed8 commit cbb56f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/calcio_live/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ async def async_update(self):
async with aiohttp.ClientSession() as session:
async with session.get(url, headers=headers) as response:
if response.status != 200:
_LOGGER.error(f"Errore HTTP {response.status} per {self._name}")
#_LOGGER.error(f"Errore HTTP {response.status} per {self._name}")
return
data = await response.json()
self._process_data(data)
Expand Down

0 comments on commit cbb56f0

Please sign in to comment.