From dd5795e0ed9aaeb83976460352d2f1215b0e2251 Mon Sep 17 00:00:00 2001 From: Marco Gorelli <33491632+MarcoGorelli@users.noreply.github.com> Date: Sat, 6 Apr 2024 17:25:26 +0300 Subject: [PATCH] check dataframe --- narwhals/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/narwhals/utils.py b/narwhals/utils.py index 6c2d9df13..f39aec38a 100644 --- a/narwhals/utils.py +++ b/narwhals/utils.py @@ -12,7 +12,7 @@ def remove_prefix(text: str, prefix: str) -> str: return text # pragma: no cover -def remove_suffix(text: str, suffix: str) -> str: +def remove_suffix(text: str, suffix: str) -> str: # pragma: no cover if text.endswith(suffix): return text[: -len(suffix)] return text # pragma: no cover