Skip to content

Commit d3d2538

Browse files
committed
failed to load
1 parent fedd607 commit d3d2538

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

pymathics/vectorizedplot/__init__.py

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,18 @@
2222
</ul>
2323
"""
2424

25-
from pymathics.vectorizedplot.plot_plot3d import (
26-
ContourPlot3D,
27-
ParametricPlot3D,
28-
SphericalPlot3D,
29-
)
3025
from pymathics.vectorizedplot.version import __version__
3126

27+
try:
28+
from pymathics.vectorizedplot.plot_plot3d import (
29+
ContourPlot3D,
30+
ParametricPlot3D,
31+
SphericalPlot3D,
32+
)
33+
except ModuleNotFoundError as e:
34+
print("failed to load the module", e)
35+
36+
3237
# To be recognized as an external mathics module, the following variable
3338
# is required:
3439
#

0 commit comments

Comments
 (0)