File tree Expand file tree Collapse file tree 2 files changed +2
-36
lines changed
Expand file tree Collapse file tree 2 files changed +2
-36
lines changed Original file line number Diff line number Diff line change @@ -75,38 +75,4 @@ def validate(self):
7575 msg += f"\n Compartment Description:\t { _help } "
7676 warn (msg )
7777 valid = False
78- return valid
79-
80- ##Abstract Methods
81- @abstractmethod
82- def advance_state (self , ** kwargs ):
83- """
84- An abstract method to advance the state of the component to the next one
85- (a component transitions from its current state at time t to a new one
86- at time t + dt)
87- """
88- pass
89-
90- @abstractmethod
91- def reset (self , ** kwargs ):
92- """
93- An abstract method that should be implemented to models can be returned
94- to their original state.
95- """
96- pass
97-
98- @abstractmethod
99- def save (self , directory , ** kwargs ):
100- """
101- An abstract method to save component specific state to the provided
102- directory
103-
104- Args:
105- directory: the directory to save the state to
106- """
107- pass
108-
109- @classmethod
110- @abstractmethod
111- def help (cls ):
112- pass
78+ return valid
Original file line number Diff line number Diff line change @@ -115,6 +115,6 @@ def _wrapped_help(*args):
115115
116116 x .help = _wrapped_help
117117
118- x .guides = Guides (x )
118+ x .guides = Guides (x )
119119
120120 return x
You can’t perform that action at this time.
0 commit comments