From 97f0724e72d4adf4352dc9b7dfca8b67b2ff0d5d Mon Sep 17 00:00:00 2001 From: Amanda Potts Date: Fri, 27 Sep 2024 09:48:36 -0400 Subject: [PATCH] move one line of code --- arkouda/categorical.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arkouda/categorical.py b/arkouda/categorical.py index 19870e020d..ef792dd882 100644 --- a/arkouda/categorical.py +++ b/arkouda/categorical.py @@ -76,10 +76,10 @@ class Categorical: """ - permutation: Union[pdarray, None] = None BinOps = frozenset(["==", "!="]) RegisterablePieces = frozenset(["categories", "codes", "permutation", "segments", "_akNAcode"]) RequiredPieces = frozenset(["categories", "codes", "_akNAcode"]) + permutation: Union[pdarray, None] = None segments = None objType = "Categorical" dtype = akdtype(str_) # this is being set for now because Categoricals only supported on Strings