Skip to content

Commit 4a64b37

Browse files
committed
MNT: ruff
1 parent e431490 commit 4a64b37

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

rocketpy/mathutils/function.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
}
4949
EXTRAPOLATION_TYPES = {"zero": 0, "natural": 1, "constant": 2}
5050

51+
5152
class SourceType(Enum):
5253
"""Enumeration of the source types for the Function class.
5354
The source can be either a callable or an array.
@@ -56,6 +57,7 @@ class SourceType(Enum):
5657
CALLABLE = 0
5758
ARRAY = 1
5859

60+
5961
class Function: # pylint: disable=too-many-public-methods
6062
"""Class converts a python function or a data sequence into an object
6163
which can be handled more naturally, enabling easy interpolation,

0 commit comments

Comments
 (0)