Skip to content

Commit

Permalink
Fix mypy error in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sultaniman committed Apr 24, 2024
1 parent b8c1e59 commit 536b616
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/load/pipeline/test_filesystem_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ def count(*args, **kwargs) -> Any:
extra_placeholders=extra_placeholders,
)
full_path = posixpath.join(client.dataset_path, path) # type: ignore[attr-defined]
assert client.fs_client.exists(full_path)
assert client.fs_client.exists(full_path) # type: ignore[attr-defined]
if ".jsonl" in full_path:
known_files.add(full_path)

Expand Down

0 comments on commit 536b616

Please sign in to comment.