Skip to content

Commit

Permalink
Update solis.py (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdudfield authored Jul 29, 2024
1 parent 8d8f5ec commit befb42c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions quartz_solar_forecast/inverters/solis.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
from http import HTTPStatus
import json
from typing import Any
import async_timeout
try:
import async_timeout
except:
print('Could not import `async_timeout`')

from dotenv import load_dotenv

Expand Down Expand Up @@ -387,4 +390,4 @@ async def get_solis_data(self) -> pd.DataFrame:

async def get_solis_data():
solis_data = SolisData()
return await solis_data.get_solis_data()
return await solis_data.get_solis_data()

0 comments on commit befb42c

Please sign in to comment.