We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fedd607 commit d3d2538Copy full SHA for d3d2538
1 file changed
pymathics/vectorizedplot/__init__.py
@@ -22,13 +22,18 @@
22
</ul>
23
"""
24
25
-from pymathics.vectorizedplot.plot_plot3d import (
26
- ContourPlot3D,
27
- ParametricPlot3D,
28
- SphericalPlot3D,
29
-)
30
from pymathics.vectorizedplot.version import __version__
31
+try:
+ from pymathics.vectorizedplot.plot_plot3d import (
+ ContourPlot3D,
+ ParametricPlot3D,
+ SphericalPlot3D,
32
+ )
33
+except ModuleNotFoundError as e:
34
+ print("failed to load the module", e)
35
+
36
37
# To be recognized as an external mathics module, the following variable
38
# is required:
39
#
0 commit comments