Update openmc/mesh.py

Co-authored-by: Patrick Shriwise <pshriwise@gmail.com>
This commit is contained in:
Ethan Peterson 2022-05-26 12:59:31 -04:00 committed by GitHub
parent 45cb513b15
commit e1d91bb4c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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