From 3c86858a5126af126b1d750eb7c60674620763d9 Mon Sep 17 00:00:00 2001 From: mahaalbashir Date: Wed, 4 Oct 2023 16:20:15 +0100 Subject: [PATCH] fixing pylint issues --- acro/acro_tables.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/acro/acro_tables.py b/acro/acro_tables.py index 3cc1809..4fbd3c0 100644 --- a/acro/acro_tables.py +++ b/acro/acro_tables.py @@ -210,8 +210,7 @@ def pivot_table( # pylint: disable=too-many-arguments,too-many-locals dropna: bool = True, margins_name: str = "All", observed: bool = False, - sort: bool = True, - show_suppressed: bool = False, + sort: bool = True ) -> DataFrame: """Create a spreadsheet-style pivot table as a DataFrame. @@ -255,8 +254,6 @@ def pivot_table( # pylint: disable=too-many-arguments,too-many-locals all values for categorical groupers. sort : bool, default True Specifies if the result should be sorted. - show_suppressed : bool, default False - how the totals are being calculated when the suppression is true. Returns -------