mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-01 04:10:34 +05:00
20 lines
352 B
Python
20 lines
352 B
Python
|
"""
|
||
|
|
||
|
"""
|
||
|
|
||
|
# force GEOM importation at interpretor initialization
|
||
|
# see salome_shared_modules.py
|
||
|
# (avoids incomplete import at run time)
|
||
|
|
||
|
print "============== import GEOM ======================="
|
||
|
|
||
|
import GEOM
|
||
|
|
||
|
# this function is required
|
||
|
|
||
|
def init_shared_modules():
|
||
|
"""
|
||
|
This function initializes shared modules that need to be
|
||
|
"""
|
||
|
pass
|