Skip to content

Commit

Permalink
add comment to not forget why parameter is optional
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBelthle committed Feb 6, 2025
1 parent 4221a58 commit 3fae17f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def __init__(
config: FileStudyTreeConfig,
freq: MatrixFrequency = MatrixFrequency.HOURLY,
nb_columns: t.Optional[int] = None,
default_empty: t.Optional[npt.NDArray[np.float64]] = None,
default_empty: t.Optional[npt.NDArray[np.float64]] = None, # optional only for the capacity matrix in Xpansion
):
super().__init__(context=context, config=config, freq=freq)
self.nb_columns = nb_columns
Expand Down

0 comments on commit 3fae17f

Please sign in to comment.