Skip to content

Commit

Permalink
run blacks
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdudfield committed Dec 1, 2023
1 parent 7d1314b commit f749397
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pv_site_api/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ def get_pv_actual_many_sites(
return []

# convert to list of strings
if isinstance(site_uuids,str):
if isinstance(site_uuids, str):
site_uuids_list = site_uuids.split(",")
else:
site_uuids_list = site_uuids
Expand Down Expand Up @@ -426,7 +426,7 @@ def get_pv_forecast_many_sites(
return []

# convert to list of strings
if isinstance(site_uuids,str):
if isinstance(site_uuids, str):
site_uuids_list = site_uuids.split(",")
else:
site_uuids_list = site_uuids
Expand Down

0 comments on commit f749397

Please sign in to comment.