Closed nvaytet closed 2 years ago
With these changes, when doing import ess, we are no longer importing all the submodules (amor, reflectometry, wfm). We now rely on simply doing from ess import amor or import ess.sans as sans.
import ess
amor
reflectometry
wfm
from ess import amor
import ess.sans as sans
Fixes #98
With these changes, when doing
import ess
, we are no longer importing all the submodules (amor
,reflectometry
,wfm
). We now rely on simply doingfrom ess import amor
orimport ess.sans as sans
.Fixes #98