From e4ff26ec09665d317c360b0709ddb15b6659ae82 Mon Sep 17 00:00:00 2001 From: Dewey Dunnington Date: Thu, 12 Dec 2024 15:03:59 -0600 Subject: [PATCH] lint --- python/pyarrow/types.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python/pyarrow/types.py b/python/pyarrow/types.py index 89c3f1a47c788..2bb5cfcf8b739 100644 --- a/python/pyarrow/types.py +++ b/python/pyarrow/types.py @@ -289,14 +289,17 @@ def is_map(t): def is_decimal(t): return t.id in _DECIMAL_TYPES + @doc(is_null, datatype="decimal32") def is_decimal32(t): return t.id == lib.Type_DECIMAL32 + @doc(is_null, datatype="decimal64") def is_decimal64(t): return t.id == lib.Type_DECIMAL64 + @doc(is_null, datatype="decimal128") def is_decimal128(t): return t.id == lib.Type_DECIMAL128