Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
EdFage committed Dec 7, 2023
1 parent 6242caf commit e89d2b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/example.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ def main():
site = PVSite(latitude=51.75, longitude=-1.25, capacity_kwp=1.25)

# run model
predications_df = run_forecast(site=site, ts='2023-10-30')
predictions_df = run_forecast(site=site, ts='2023-10-30')

print(predications_df)
print(f"Max: {predications_df['power_wh'].max()}")
print(predictions_df)
print(f"Max: {predictions_df['power_wh'].max()}")


if __name__ == "__main__":
Expand Down

0 comments on commit e89d2b9

Please sign in to comment.