revert to False because of failing tests

This commit is contained in:
Ethan Peterson 2022-10-13 13:24:03 -04:00
parent a67b330d8f
commit 1ab2cbec40
2 changed files with 2 additions and 2 deletions

View file

@ -75,7 +75,7 @@ class Geometry:
if universe.id in volume_calc.volumes:
universe.add_volume_information(volume_calc)
def export_to_xml(self, path='geometry.xml', remove_surfs=True):
def export_to_xml(self, path='geometry.xml', remove_surfs=False):
"""Export geometry to an XML file.
Parameters

View file

@ -397,7 +397,7 @@ class Model:
depletion_operator.cleanup_when_done = True
depletion_operator.finalize()
def export_to_xml(self, directory='.', remove_surfs=True):
def export_to_xml(self, directory='.', remove_surfs=False):
"""Export model to XML files.
Parameters