avoid python/damask/_orientation.py exceeds line length limit (maximum line length 141 > 132)

This commit is contained in:
f.basile 2020-06-04 16:43:28 +02:00
parent 0c41e33434
commit 3897136f85
1 changed files with 2 additions and 1 deletions

View File

@ -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=[]):