From aaeec16c66b4729b3d5ddec147bccbbc29535b6a Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Sun, 12 Apr 2020 15:34:29 +0200 Subject: [PATCH] proper indentation for sphinx --- python/damask/_orientation.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/python/damask/_orientation.py b/python/damask/_orientation.py index 76475e057..aa1ba06ef 100644 --- a/python/damask/_orientation.py +++ b/python/damask/_orientation.py @@ -8,8 +8,8 @@ class Orientation: Crystallographic orientation. A crystallographic orientation contains a rotation and a lattice. - """ + """ __slots__ = ['rotation','lattice'] def __repr__(self): @@ -46,8 +46,10 @@ class Orientation: Disorientation between myself and given other orientation. Rotation axis falls into SST if SST == True. - (Currently requires same symmetry for both orientations. - Look into A. Heinz and P. Neumann 1991 for cases with differing sym.) + + Currently requires same symmetry for both orientations. + Look into A. Heinz and P. Neumann 1991 for cases with differing sym. + """ if self.lattice.symmetry != other.lattice.symmetry: raise NotImplementedError('disorientation between different symmetry classes not supported yet.')