Skip to content
Snippets Groups Projects

Updating models to allow normal imports

Open Zach Marshall requested to merge zmarshal/MadGraphModels:normal_imports into main
+ 4
4
@@ -8,13 +8,13 @@
# #
#####################################################
from . import os
from . import sys
import os
import sys
root_path = os.path.split(os.path.dirname(os.path.realpath( __file__ )))[0]
sys.path.insert(0, root_path)
from . import MadSTR.madstr_interface as madstr_interface
from . import MadSTR.madstr_exporter as madstr_exporter
import MadSTR.madstr_interface as madstr_interface
import MadSTR.madstr_exporter as madstr_exporter
##import Resummation.resummation_exporters as resummation_exporters
# Three types of functionality are allowed in a plugin
Loading