From d10516e0b6489f7dfdb743bedc07dd7cf857a519 Mon Sep 17 00:00:00 2001 From: Philip Eisenlohr Date: Thu, 9 Jun 2022 17:23:16 -0400 Subject: [PATCH] fixed typo --- python/damask/_orientation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/damask/_orientation.py b/python/damask/_orientation.py index 7d6dee3ff..4721143da 100644 --- a/python/damask/_orientation.py +++ b/python/damask/_orientation.py @@ -453,7 +453,7 @@ class Orientation(Rotation,Crystal): elif self.family == 'triclinic': return np.ones(rho_abs.shape[:-1]).astype(bool) else: - raise(TypeError, f'unknown symmetry "{self.family}"') + raise TypeError(f'unknown symmetry "{self.family}"') @property