[skip ci] adjusted function argument alignment with asterisk

This commit is contained in:
Daniel Otto de Mentock 2022-01-27 12:14:54 +01:00
parent a12135fe77
commit 19a73bbf3b
1 changed files with 3 additions and 4 deletions

View File

@ -311,8 +311,8 @@ class Crystal():
+ _lattice_points.get(self.lattice if self.lattice == 'hP' else \
self.lattice[-1],None),dtype=float)
def to_lattice(self,
*, direction: np.ndarray = None,
def to_lattice(self, *,
direction: np.ndarray = None,
plane: np.ndarray = None) -> np.ndarray:
"""
Calculate lattice vector corresponding to crystal frame direction or plane normal.
@ -337,8 +337,7 @@ class Crystal():
return np.einsum('il,...l',basis,axis)
def to_frame(self,
*,
def to_frame(self, *,
uvw: np.ndarray = None,
hkl: np.ndarray = None) -> np.ndarray:
"""