Skip to content

Commit bbb902c

Browse files
committed
mypy - ignore
1 parent 4f8449a commit bbb902c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/physt/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,10 @@ def _load_data(path: Path) -> nw.DataFrame:
7777

7878
for backend in available_backends:
7979
try:
80-
return nw.read_csv(str(path), backend=backend)
80+
return nw.read_csv(str(path), backend=backend) # type: ignore[arg-type]
8181
except KeyError:
8282
try:
83-
return nw.read_parquet(str(path), backend=backend)
83+
return nw.read_parquet(str(path), backend=backend) # type: ignore[arg-type]
8484
except EnvironmentError:
8585
continue
8686

0 commit comments

Comments
 (0)