Skip to content

Commit

Permalink
Fix a potential bug found during PEP8 cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
yokochi47 committed Sep 19, 2024
1 parent 50197fb commit e258ff5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wwpdb/utils/nmr/NmrDpUtility.py
Original file line number Diff line number Diff line change
Expand Up @@ -10286,7 +10286,7 @@ def __detectContentSubTypeOfLegacyMr(self):
for name in names:

if isinstance(name, int):
if int != -1:
if name != -1:
atom_likes += 1
else:
atom_unlikes += 1
Expand Down

0 comments on commit e258ff5

Please sign in to comment.