Skip to content

Commit

Permalink
Address deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
danielballan committed Sep 19, 2024
1 parent f945810 commit f285f3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tiled/examples/xdi.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def read_xdi(data_uri, structure=None, metadata=None, specs=None, access_policy=

# TODO validate

df = pd.read_table(file, delim_whitespace=True, names=col_labels)
df = pd.read_table(file, sep=r"\s+", names=col_labels)

return DataFrameAdapter.from_pandas(
df,
Expand Down

0 comments on commit f285f3c

Please sign in to comment.