Skip to content

Commit b5730cc

Browse files
Update src/nomad_simulation_parsers/parsers/lammps/file_parsers.py
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent da54518 commit b5730cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/nomad_simulation_parsers/parsers/lammps/file_parsers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ def __init__(self) -> None:
435435

436436
def init_quantities(self) -> None:
437437
def str_op(val: str) -> str | list[str]:
438-
val = val.split('#', 1)[0]
438+
val = val.split('#', 1)[0]
439439
val = re.sub(f'&{RE_N}+', ' ', val)
440440
val = val.split()
441441
val = val if len(val) > 1 else val[0]

0 commit comments

Comments
 (0)