Pass correct arg type.

This commit is contained in:
ljnsn 2022-11-16 01:41:27 +01:00
parent b84a838e2a
commit 8d0429946d
1 changed files with 2 additions and 2 deletions

View File

@ -37,9 +37,9 @@ def read_ods(
backend = EXT_MAP.get(Path(file_or_path).suffix, ods)
return algo.read_data(
backend,
file_or_path,
Path(file_or_path),
sheet,
headers=headers,
columns=columns,
columns=columns or [],
skiprows=skiprows,
)