From e1d91bb4c624034e7c8c28a7e41a88b16129e0ce Mon Sep 17 00:00:00 2001 From: Ethan Peterson Date: Thu, 26 May 2022 12:59:31 -0400 Subject: [PATCH] Update openmc/mesh.py Co-authored-by: Patrick Shriwise --- openmc/mesh.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openmc/mesh.py b/openmc/mesh.py index 3ae5ee43d7..d812f27ac7 100644 --- a/openmc/mesh.py +++ b/openmc/mesh.py @@ -145,8 +145,8 @@ class StructuredMesh(ABC): """ - def __init__(self, **kwargs): - super().__init__(**kwargs) + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) @property @abstractmethod