From 3897136f85884c745a3e645a93a9fae136db317d Mon Sep 17 00:00:00 2001 From: "f.basile" Date: Thu, 4 Jun 2020 16:43:28 +0200 Subject: [PATCH] avoid python/damask/_orientation.py exceeds line length limit (maximum line length 141 > 132) --- python/damask/_orientation.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/damask/_orientation.py b/python/damask/_orientation.py index 6fa40c261..909365d41 100644 --- a/python/damask/_orientation.py +++ b/python/damask/_orientation.py @@ -92,7 +92,8 @@ class Orientation: for q in self.lattice.symmetry.symmetryOperations()] else: return np.reshape([self.__class__(q*Rotation.from_quaternion(self.rotation.as_quaternion()[l]),self.lattice) \ - for q in self.lattice.symmetry.symmetryOperations() for l in range(self.rotation.shape[0])], (24,self.rotation.shape[0])) + for q in self.lattice.symmetry.symmetryOperations() \ + for l in range(self.rotation.shape[0])], (24,self.rotation.shape[0])) def equivalentOrientations(self,members=[]):