Skip to content

Commit

Permalink
Actually complete full stack chain(hopefully)
Browse files Browse the repository at this point in the history
  • Loading branch information
MicahGale committed Jan 17, 2024
1 parent dbf5133 commit 1ffdc81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion montepy/input_parser/input_syntax_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def read_input_syntax(input_file, mcnp_version=DEFAULT_VERSION, encoding="ascii"
"""
global reading_queue
reading_queue = deque()
with input_file.open("r") as fh:
with input_file.open("r", encoding=encoding) as fh:
yield from read_front_matters(fh, mcnp_version)
yield from read_data(fh, mcnp_version)

Expand Down

0 comments on commit 1ffdc81

Please sign in to comment.