Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion sdc/datatypes/hpat_pandas_dataframe_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@
from numba.errors import TypingError

from sdc.datatypes.hpat_pandas_dataframe_types import DataFrameType
from sdc.utils import sdc_overload_method


@overload_method(DataFrameType, 'count')
@sdc_overload_method(DataFrameType, 'count')
def sdc_pandas_dataframe_count(self, axis=0, level=None, numeric_only=False):
"""
Pandas DataFrame method :meth:`pandas.DataFrame.count` implementation.
Expand Down
Loading