diff --git a/sandy/njoy.py b/sandy/njoy.py index 17654eeb..e21ea0a4 100644 --- a/sandy/njoy.py +++ b/sandy/njoy.py @@ -87,7 +87,6 @@ import sandy from sandy.settings import SandyError -from sandy.formats.endf6 import Endf6 __author__ = "Luca Fiorito" __all__ = ["process", "process_proton", "get_njoy"] @@ -1202,7 +1201,7 @@ def process( outputs : `map` map of {`tape` : `file`) for ouptut files """ - tape = Endf6.from_file(endftape) + tape = sandy.Endf6.from_file(endftape) mat = tape.mat[0] info = tape.read_section(mat, 1, 451) meta = info["LISO"] @@ -1428,7 +1427,7 @@ def process_proton( outputs : `map` map of {`tape` : `file`) for ouptut files """ - tape = Endf6.from_file(endftape) + tape = sandy.Endf6.from_file(endftape) mat = tape.mat[0] info = tape.read_section(mat, 1, 451) meta = info["LISO"]