mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 21:55:41 -04:00
is not -> !=
This commit is contained in:
parent
ce6b893dd4
commit
4631c5c7df
1 changed files with 1 additions and 1 deletions
|
|
@ -639,7 +639,7 @@ def _close_random_pack(domain, particles, contraction_rate):
|
|||
|
||||
while rods:
|
||||
d, i, j = heappop(rods)
|
||||
if i is not removed and j is not removed:
|
||||
if i != removed and j != removed:
|
||||
del rods_map[i]
|
||||
del rods_map[j]
|
||||
return d, i, j
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue