From c9912dde7f55bd68b518aae9e1313a460228e9c5 Mon Sep 17 00:00:00 2001 From: Aidos Kanapyanov Date: Wed, 21 Aug 2024 23:14:22 +0500 Subject: [PATCH] skip coverage for some paths --- narwhals/_dask/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/narwhals/_dask/utils.py b/narwhals/_dask/utils.py index 281c4bcd8..0aa3030e2 100644 --- a/narwhals/_dask/utils.py +++ b/narwhals/_dask/utils.py @@ -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):