We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d1d6fa commit d30f4ddCopy full SHA for d30f4dd
1 file changed
decoimpact/data/entities/time_aggregation_rule_data.py
@@ -39,3 +39,13 @@ def __init__(
39
def input_variable(self) -> str:
40
"""Name of the input variable"""
41
return self._input_variable
42
+
43
+ @property
44
+ def start_year(self) -> Optional[int]:
45
+ """Start year for aggregation"""
46
+ return self._start_year
47
48
49
+ def end_year(self) -> Optional[int]:
50
+ """End year for aggregation"""
51
+ return self._end_year
0 commit comments