Skip to content

Commit

Permalink
remove unneeded option
Browse files Browse the repository at this point in the history
  • Loading branch information
jojoelfe committed Dec 2, 2023
1 parent 7fba398 commit 30bebdc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions starfile/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,7 @@ def _parse_loop_block(self) -> pd.DataFrame:
StringIO(loop_data.replace("'",'"')),
delim_whitespace=True,
header=None,
comment='#',
keep_default_na=False
comment='#'
)
df = df.apply(pd.to_numeric, errors='ignore')
df.columns = loop_column_names
Expand Down

0 comments on commit 30bebdc

Please sign in to comment.