From 606d9bf03eb967064e0c0235b486f4cca479c896 Mon Sep 17 00:00:00 2001 From: Ethan Peterson Date: Wed, 4 May 2022 14:04:15 -0400 Subject: [PATCH] fixed abstractmethod error --- openmc/mesh.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/openmc/mesh.py b/openmc/mesh.py index c6fa7bb994..491419778f 100644 --- a/openmc/mesh.py +++ b/openmc/mesh.py @@ -61,7 +61,6 @@ class MeshBase(IDManagerMixin, ABC): pass @property - @abstractmethod def vertices(self): """Return coordinates of mesh vertices. @@ -75,7 +74,6 @@ class MeshBase(IDManagerMixin, ABC): return np.stack(np.meshgrid(*self._grids, indexing='ij'), axis=-1) @property - @abstractmethod def centroids(self): """Return coordinates of mesh element centroids.