From d5982ba31a4518540184cc9381234b246cc41184 Mon Sep 17 00:00:00 2001 From: Ethan-DeBandi99 <16845933+Ethan-DeBandi99@users.noreply.github.com> Date: Wed, 29 Jun 2022 12:21:59 -0400 Subject: [PATCH] Fixing camel case --- arkouda/categorical.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arkouda/categorical.py b/arkouda/categorical.py index 4d74578731..29fb5110c1 100644 --- a/arkouda/categorical.py +++ b/arkouda/categorical.py @@ -138,7 +138,7 @@ def __init__(self, values, **kwargs) -> None: self.ndim = self.codes.ndim self.shape = self.codes.shape self.dtype = str_ - self.objType = self.__class__.__name__ + self.objtype = self.__class__.__name__ self.name: Optional[str] = None @classmethod