From fa8ae3788e0e56579af2190022ba807ccc603131 Mon Sep 17 00:00:00 2001 From: Pradyumna Reddy Date: Wed, 31 May 2017 22:10:10 +0530 Subject: [PATCH] bug fix #16524 --- pandas/core/categorical.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/categorical.py b/pandas/core/categorical.py index f58eed74f760e..5ea11772923cc 100644 --- a/pandas/core/categorical.py +++ b/pandas/core/categorical.py @@ -248,7 +248,7 @@ class Categorical(PandasObject): __array_priority__ = 1000 _typ = 'categorical' - def __init__(self, values, categories=None, ordered=False, fastpath=False): + def __init__(self, values, categories=None, ordered=False, fastpath=False, **kwargs): self._validate_ordered(ordered)