We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a3b709 commit 954a458Copy full SHA for 954a458
1 file changed
decoimpact/data/entities/time_aggregation_rule_data.py
@@ -30,10 +30,11 @@ def __init__(
30
start_year: Optional[int] = None,
31
end_year: Optional[int] = None,
32
):
33
+ # pylint: disable=too-many-arguments
34
super().__init__(name, operation)
35
self._name = name
- self._operation = operation
36
self._input_variable = input_variable
37
+ self._operation = operation
38
self._start_year = start_year
39
self._end_year = end_year
40
0 commit comments