Skip to content

Commit

Permalink
fix better fix 2
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmkrieger committed Nov 6, 2023
1 parent 7549159 commit b97137c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions prody/proteins/pdbfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -1441,9 +1441,9 @@ def writePDBStream(stream, atoms, csets=None, **kwargs):

if had_atoms:
atoms.setACSIndex(m)
anisous = atoms._getAnisous()
if anisous is not None:
anisous = np.array(anisous * 10000, dtype=int)
anisous = atoms._getAnisous()
if anisous is not None:
anisous = np.array(anisous * 10000, dtype=int)

if multi:
write('MODEL{0:9d}\n'.format(m+1))
Expand Down

0 comments on commit b97137c

Please sign in to comment.