Skip to content

Commit a2a5cd1

Browse files
authored
Add 'CylinderShaft' to __all__ exports
1 parent 97c5df5 commit a2a5cd1

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

bladex/__init__.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
"""
22
BladeX init
33
"""
4-
__all__ = ['ProfileInterface', 'NacaProfile', 'CustomProfile',
5-
'ReversePropeller', 'Blade', 'Shaft', 'Propeller', 'Deformation',
6-
'ParamFile', 'RBF', 'reconstruct_f', 'scipy_bspline']
4+
__all__ = [
5+
'ProfileInterface', 'NacaProfile', 'CustomProfile',
6+
'ReversePropeller', 'Blade', 'Shaft', 'CylinderShaft',
7+
'Propeller', 'Deformation', 'ParamFile', 'RBF',
8+
'reconstruct_f', 'scipy_bspline'
9+
]
710

811
from .meta import *
912
from .profile import ProfileInterface
@@ -16,4 +19,4 @@
1619
from .params import ParamFile
1720
from .ndinterpolator import RBF, reconstruct_f, scipy_bspline
1821
from .reversepropeller import ReversePropeller
19-
from .cylinder_shaft import CylinderShaft
22+
from .cylinder_shaft import CylinderShaft

0 commit comments

Comments
 (0)