Skip to content

Commit

Permalink
Quick fix for missing type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
jgrguric96 committed Sep 3, 2024
1 parent 3f224bf commit 1ba44e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Agents/prosumer_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def average(self:list, dates:list) -> list:


class prosumer_python(ABC):
def __init__(self, eid, forecasted_data, metrics) -> None:
def __init__(self, eid:list, forecasted_data:list, metrics:list) -> None:
"""
prosumer_python class constructor
Expand Down

0 comments on commit 1ba44e7

Please sign in to comment.