File tree Expand file tree Collapse file tree 4 files changed +33
-1
lines changed
src/ansys/mechanical/core Expand file tree Collapse file tree 4 files changed +33
-1
lines changed Original file line number Diff line number Diff line change 1+ Add \` __ all__ \` definitions
Original file line number Diff line number Diff line change 7777
7878BUILDING_GALLERY = False
7979"""Whether or not to build gallery examples."""
80+
81+ __all__ = [
82+ "__version__" ,
83+ "App" ,
84+ "BUILDING_GALLERY" ,
85+ "EXAMPLES_PATH" ,
86+ "HAS_EMBEDDING" ,
87+ "LOCAL_PORTS" ,
88+ "LOG" ,
89+ "LocalMechanicalPool" ,
90+ "Mechanical" ,
91+ "USER_DATA_PATH" ,
92+ "change_default_mechanical_path" ,
93+ "close_all_local_instances" ,
94+ "connect_to_mechanical" ,
95+ "get_mechanical_path" ,
96+ "global_variables" ,
97+ "launch_mechanical" ,
98+ ]
Original file line number Diff line number Diff line change 2626from .app import App
2727from .app_libraries import add_mechanical_python_libraries
2828from .imports import global_variables
29+
30+ __all__ = [
31+ "AddinConfiguration" ,
32+ "App" ,
33+ "add_mechanical_python_libraries" ,
34+ "global_variables" ,
35+ ]
Original file line number Diff line number Diff line change 2222
2323"""Initialize the package level imports."""
2424
25- from .downloads import delete_downloads , download_file # noqa: F401
25+ from .downloads import delete_downloads , download_file
26+
27+ __all__ = [
28+ "delete_downloads" ,
29+ "download_file" ,
30+ ]
You can’t perform that action at this time.
0 commit comments