Skip to content

Commit

Permalink
Update pandas calls to avoid deprecated params
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitakuklev committed Jan 23, 2025
1 parent f27758b commit b05d57b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pysdds/readers/readers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1988,7 +1988,7 @@ def _read_pages_ascii_mixed_lines(
# lines = [file.readline() for i in range(page_size)]
# buf = io.BytesIO(b''.join(lines))
opts = dict(
delim_whitespace=True,
sep="\s+",
comment="!",
header=None,
escapechar="\\",
Expand Down Expand Up @@ -2559,7 +2559,7 @@ def gen():
# lines = [file.readline() for i in range(page_size)]
# buf = io.BytesIO(b''.join(lines))
opts = dict(
delim_whitespace=True,
sep="\s+",
comment="!",
header=None,
escapechar="\\",
Expand Down Expand Up @@ -2617,7 +2617,7 @@ def gen():
f"parse_table"
)
opts = dict(
delim_whitespace=True,
sep="\s+",
comment="!",
header=None,
escapechar="\\",
Expand Down

0 comments on commit b05d57b

Please sign in to comment.