mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 06:05:58 -04:00
Remove false warnings when a Filter is reused
This commit is contained in:
parent
0ca6f416d3
commit
13758d0e36
1 changed files with 1 additions and 1 deletions
|
|
@ -3514,7 +3514,7 @@ class Tallies(cv.CheckedList):
|
|||
if f not in already_written:
|
||||
root_element.append(f.to_xml_element())
|
||||
already_written[f] = f.id
|
||||
else:
|
||||
elif f.id != already_written[f]:
|
||||
# Set the IDs of identical filters with different
|
||||
# user-defined IDs to the same value
|
||||
f.id = already_written[f]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue