Skip to content

Commit

Permalink
remove stale enumeration
Browse files Browse the repository at this point in the history
  • Loading branch information
gonuke committed Oct 5, 2024
1 parent a50d7af commit 733337d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openmc/stats/multivariate.py
Original file line number Diff line number Diff line change
Expand Up @@ -862,7 +862,7 @@ def from_xml_element(cls, elem):
"""
coord = {}

for axis in enumerate(('x','y','z')):
for axis in ('x','y','z'):
coord_data = get_text(elem, axis)
if coord_data is not None:
coord[axis] = [float(b) for b in coord_data.split]
Expand Down

0 comments on commit 733337d

Please sign in to comment.