Skip to content

Commit 97f3e2d

Browse files
committed
fix: missing import
1 parent b6d27b1 commit 97f3e2d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/ansys/dpf/core/examples/__init__.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
from .examples import get_example_required_minimum_dpf_version, find_files, fluid_axial_model
2424
from .downloads import (
25+
download_all_kinds_of_complexity,
2526
find_simple_bar,
2627
find_static_rst,
2728
find_complex_rst,
@@ -80,4 +81,9 @@ def __getattr__(name):
8081
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
8182

8283

83-
__all__ = ["get_example_required_minimum_dpf_version", "find_files", "fluid_axial_model"]
84+
__all__ = [
85+
"download_all_kinds_of_complexity",
86+
"get_example_required_minimum_dpf_version",
87+
"find_files",
88+
"fluid_axial_model",
89+
]

0 commit comments

Comments
 (0)