From d5f4dc5626c90ad8e2e2a2ad23ab27015b697a48 Mon Sep 17 00:00:00 2001 From: Vivian Nguyen Date: Thu, 9 Nov 2023 11:07:25 -0600 Subject: [PATCH] Correct linting errors --- apis/python/src/tiledbsoma/_dataframe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apis/python/src/tiledbsoma/_dataframe.py b/apis/python/src/tiledbsoma/_dataframe.py index 29089dbd2c..a83c74ea84 100644 --- a/apis/python/src/tiledbsoma/_dataframe.py +++ b/apis/python/src/tiledbsoma/_dataframe.py @@ -401,7 +401,7 @@ def write( if not pa.types.is_dictionary(col.type): raise ValueError( "Expected dictionary type for enumerated attribute " - f"{name} but saw {col_info.type}" + f"{name} but saw {col.type}" ) enmr = self._handle.enum(attr.name)