Skip to content

Commit

Permalink
replace deprecated delim_whitespace=True
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoMVale committed Sep 4, 2024
1 parent 0935283 commit 25dc013
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/polykin/properties/pvt_polymer/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def load_PVT_parameters(method: str) -> pd.DataFrame:
table = table_parameters.get(method, None)
if table is None:
filepath = (Path(__file__).parent).joinpath(method + '_parameters.tsv')
table = pd.read_csv(filepath, delim_whitespace=True)
table = pd.read_csv(filepath, sep=r"\s+")
table.set_index('Polymer', inplace=True)
table_parameters[method] = table
return table
Expand Down

0 comments on commit 25dc013

Please sign in to comment.