We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 430903f commit 87332beCopy full SHA for 87332be
climada/trajectories/impact_calc_strat.py
@@ -32,6 +32,10 @@
32
__all__ = ["ImpactCalcComputation"]
33
34
35
+# The following is acceptable.
36
+# We design a pattern, and currently it requires only to
37
+# define the compute_impacts method.
38
+# pylint: disable=too-few-public-methods
39
class ImpactComputationStrategy(ABC):
40
"""
41
Interface for impact computation strategies.
@@ -73,7 +77,6 @@ def compute_impacts(
73
77
--------
74
78
ImpactCalcComputation : The default implementation of this interface.
75
79
76
- ...
80
81
82
class ImpactCalcComputation(ImpactComputationStrategy):
0 commit comments