mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 06:05:58 -04:00
Update openmc/mesh.py
Co-authored-by: Patrick Shriwise <pshriwise@gmail.com>
This commit is contained in:
parent
45cb513b15
commit
e1d91bb4c6
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue