From b97137ccb37a7b2410f56cec4f81e641a89aba1e Mon Sep 17 00:00:00 2001 From: James Krieger Date: Mon, 6 Nov 2023 17:14:27 +0100 Subject: [PATCH] fix better fix 2 --- prody/proteins/pdbfile.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/prody/proteins/pdbfile.py b/prody/proteins/pdbfile.py index 3c6cc1063..9fcbe8edf 100644 --- a/prody/proteins/pdbfile.py +++ b/prody/proteins/pdbfile.py @@ -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))