From f9784de117424eaea4a2f0e6d05917a5a420c97b Mon Sep 17 00:00:00 2001 From: Genza999 Date: Thu, 19 Sep 2019 22:47:37 +0300 Subject: [PATCH] replace kwargs with **kwargs --- pandas/io/formats/style.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/io/formats/style.py b/pandas/io/formats/style.py index 033d93d1456c8..e04997ab5a28c 100644 --- a/pandas/io/formats/style.py +++ b/pandas/io/formats/style.py @@ -645,7 +645,7 @@ def apply(self, func, axis=0, subset=None, **kwargs): subset : IndexSlice a valid indexer to limit ``data`` to *before* applying the function. Consider using a pandas.IndexSlice - kwargs : dict + **kwargs : dict pass along to ``func`` Returns