Skip to content

Commit

Permalink
no f string
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmkrieger committed Oct 6, 2023
1 parent 549d146 commit b19a979
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prody/tests/proteins/test_waterbridges.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,6 @@ def testSingleWaterBridgesOutputInfo(self):
self.assertEqual(self.clustInfoMultiWater[7], len(self.clustMultiWater.waters),
'item 7 from selected info should be number of waters in the cluster')
self.assertEqual(self.clustInfoMultiWater[8],
list(map(lambda w: f"{w.getChid()}_{w.getIndex()}", self.clustMultiWater.waters)),
list(map(lambda w: w.getChid() + "_" + str(w.getIndex()), self.clustMultiWater.waters)),
'item 8 from selected info should be chid and index for 2 water atoms')

0 comments on commit b19a979

Please sign in to comment.