Skip to content

Commit 954a458

Browse files
committed
pylint
1 parent 8a3b709 commit 954a458

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

decoimpact/data/entities/time_aggregation_rule_data.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@ def __init__(
3030
start_year: Optional[int] = None,
3131
end_year: Optional[int] = None,
3232
):
33+
# pylint: disable=too-many-arguments
3334
super().__init__(name, operation)
3435
self._name = name
35-
self._operation = operation
3636
self._input_variable = input_variable
37+
self._operation = operation
3738
self._start_year = start_year
3839
self._end_year = end_year
3940

0 commit comments

Comments
 (0)