Skip to content

Commit

Permalink
Removed use of obsolete method iteritems() (openmm#4285)
Browse files Browse the repository at this point in the history
  • Loading branch information
peastman authored Oct 26, 2023
1 parent 25f502d commit 76520ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wrappers/python/openmm/app/gromacstopfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ def __init__(self, file, periodicBoxVectors=None, unitCellDimensions=None, inclu
self._defines['FLEXIBLE'] = True
self._genpairs = True
if defines is not None:
for define, value in defines.iteritems():
for define, value in defines.items():
self._defines[define] = value

# Parse the file.
Expand Down

0 comments on commit 76520ce

Please sign in to comment.