Skip to content

Commit

Permalink
chore: replace deprecated delim_whitespace arg with recommended upd…
Browse files Browse the repository at this point in the history
…ate from upstream
  • Loading branch information
JonathanRayner committed Feb 15, 2024
1 parent 56cfe2d commit 2c23633
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 2c23633

Please sign in to comment.