Skip to content

Commit

Permalink
fixed adding some import rekated errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Arun Persaud committed Sep 29, 2024
1 parent efd920f commit 6fee34a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/pymcnp/files/inp/inp.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ def __init__(self):

self.message: str = None
self.title: str = None
self.cells: cells.Cells = Cells()
self.surfaces: surfaces.Surfaces = Surfaces()
self.data: data.Data = Data()
self.cells: cells.Cells = cells.Cells()
self.surfaces: surfaces.Surfaces = surfaces.Surfaces()
self.data: data.Data = data.Data()
self.other: str = None

def set_message(self, message: str) -> None:
Expand Down
2 changes: 1 addition & 1 deletion src/pymcnp/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def main(argv: list[str] = sys.argv[1:]) -> None:
case None:
print(PYMCNP_TITLE)
case _:
cli._io.error(_io.ERROR_UNRECOGNIZED_ARGS)
cli._io.error(cli._io.ERROR_UNRECOGNIZED_ARGS)


if __name__ == "__main__":
Expand Down

0 comments on commit 6fee34a

Please sign in to comment.