mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 22:26:08 -04:00
Now using id property setters in Python Summary API
This commit is contained in:
parent
b671b1a299
commit
ffd0070654
2 changed files with 5 additions and 9 deletions
|
|
@ -194,10 +194,6 @@ class Material(object):
|
|||
def id(self, material_id):
|
||||
global AUTO_MATERIAL_ID, MATERIAL_IDS
|
||||
|
||||
# If the Material already has an ID, remove it from global list
|
||||
if hasattr(self, '_id') and self._id is not None:
|
||||
MATERIAL_IDS.remove(self._id)
|
||||
|
||||
if material_id is None:
|
||||
self._id = AUTO_MATERIAL_ID
|
||||
MATERIAL_IDS.append(AUTO_MATERIAL_ID)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue