Skip to content

Commit 9361670

Browse files
committed
formatting with documentation build
1 parent cbb955a commit 9361670

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

elastica/callback_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class MyCallBack(CallBackBaseClass):
6868
Collect data using make_callback method every sampling step.
6969
callback_params: dict
7070
Collected callback data is saved in this dictionary.
71-
"""
71+
"""
7272

7373
def __init__(self, step_skip: int, callback_params: dict) -> None:
7474
"""

elastica/external_forces.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ class UniformForces(NoForces):
255255
----------
256256
force: numpy.ndarray
257257
2D (dim, 1) array containing data with 'float' type. Total force applied to a rod-like object.
258-
"""
258+
"""
259259

260260
def __init__(
261261
self,

elastica/interaction.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ class AnisotropicFrictionalPlane(InteractionPlane):
137137
kinetic_mu_array: numpy.ndarray
138138
1D (3,) array containing data with 'float' type.
139139
[forward, backward, sideways] kinetic friction coefficients.
140-
"""
140+
"""
141141

142142
def __init__(
143143
self,

elastica/joint.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ class HingeJoint(FreeJoint):
136136
Rotational stiffness coefficient of the joint.
137137
normal_direction: numpy.ndarray
138138
2D (dim, 1) array containing data with 'float' type. Constraint rotation direction.
139-
"""
139+
"""
140140

141141
# TODO: IN WRAPPER COMPUTE THE NORMAL DIRECTION OR ASK USER TO GIVE INPUT, IF NOT THROW ERROR
142142
def __init__(
@@ -233,7 +233,7 @@ class FixedJoint(FreeJoint):
233233
Rest 3x3 rotation matrix from system one to system two at the connected elements.
234234
Instead of aligning the directors of both systems directly, a desired rest rotational matrix labeled C_12*
235235
is enforced.
236-
"""
236+
"""
237237

238238
def __init__(
239239
self,

elastica/rod/cosserat_rod.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ class CosseratRod(RodBase, KnotTheory):
148148
dilatation_rate: NDArray[np.float64]
149149
1D (n_elems) array containing data with 'float' type.
150150
Rod element dilatation rates.
151-
"""
151+
"""
152152

153153
REQUISITE_MODULES: list[Type] = []
154154

0 commit comments

Comments
 (0)