Skip to content

Commit

Permalink
fix missing fstring
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmkrieger committed Sep 13, 2024
1 parent f71e55c commit 3dd24b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prody/proteins/waterbridges.py
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ def getResInfo(atoms, **kwargs):
chids = atoms.select(considered_atoms_sel).getChids()

for i, num in enumerate(nums):
dict[num] = "{names[i]}{num}{chids[i]}"
dict[num] = "{0}{1}{2}".format(names[i], num, chids[i])

return dict

Expand Down

0 comments on commit 3dd24b9

Please sign in to comment.