Skip to content

Commit 634995a

Browse files
fixed autodoc bug with move to src
1 parent 8fb23b4 commit 634995a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
sys.path.insert(0, os.path.abspath("."))
1616
sys.path.insert(0, os.path.abspath(".."))
17-
sys.path.insert(0, os.path.abspath("../.."))
17+
sys.path.insert(0, os.path.abspath("../../src"))
1818

1919
# import mock
2020

src/fluidsf/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
from .shift_array_1d import shift_array_1d
2020
from .shift_array_2d import shift_array_2d
2121
from .shift_array_3d import shift_array_3d
22+
from .shift_array_xy import shift_array_xy
2223

2324
__version__ = "0.2.0"
2425

@@ -38,5 +39,6 @@
3839
"shift_array_1d",
3940
"shift_array_2d",
4041
"shift_array_3d",
42+
"shift_array_xy",
4143
"bin_data",
4244
)

0 commit comments

Comments
 (0)