Skip to content

Commit

Permalink
pass token into proc_forecasts
Browse files Browse the repository at this point in the history
  • Loading branch information
cander67 authored Feb 17, 2024
1 parent b93ac0d commit bb3d75e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/proc_forecasts.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from azure.identity import DefaultAzureCredential
import src.utils as utils

def proc_forecasts(time, forecasts):
def proc_forecasts(default_credential, time, forecasts):
'''Create table data from forecast data
Args:
time (datetime): Current time
Expand Down Expand Up @@ -60,4 +60,4 @@ def proc_forecasts(time, forecasts):
# Append row to table
table.append_row(row)

return table.get_table()
return table.get_table()

0 comments on commit bb3d75e

Please sign in to comment.