Skip to content

Commit

Permalink
Merge pull request #35 from JonathanRayner/patch-1
Browse files Browse the repository at this point in the history
chore: replace deprecated `delim_whitespace` arg with recommended update from upstream
  • Loading branch information
arvedes committed Feb 16, 2024
2 parents 56cfe2d + 2c23633 commit 708c76b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyelmer/post.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,4 +257,4 @@ def dat_to_dataframe(dat_file):
or "Variables in columns of matrix" in line
):
names_start = True
return pd.read_table(dat_file, names=names, delim_whitespace=True)
return pd.read_table(dat_file, names=names, sep='\s+')

0 comments on commit 708c76b

Please sign in to comment.