Skip to content

Commit

Permalink
skip coverage for some paths
Browse files Browse the repository at this point in the history
  • Loading branch information
aidoskanapyanov committed Aug 21, 2024
1 parent 994e252 commit c9912dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions narwhals/_dask/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ def reverse_translate_dtype(dtype: DType | type[DType]) -> Any:
) >= parse_version("2.0.0"):
if get_pyarrow() is not None:
return "string[pyarrow]"
return "string[python]"
return "object"
return "string[python]" # pragma: no cover
return "object" # pragma: no cover
if isinstance_or_issubclass(dtype, dtypes.Boolean):
return "bool"
if isinstance_or_issubclass(dtype, dtypes.Categorical):
Expand Down

0 comments on commit c9912dd

Please sign in to comment.