Skip to content

Commit 7a945d2

Browse files
committed
pyright for value_counts
1 parent 9d1726a commit 7a945d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/extension/decimal/array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ def convert_values(param: Any) -> ExtensionArray | list[Any]:
345345

346346
def value_counts(self, dropna: bool = True) -> Series:
347347
from pandas.core.algorithms import ( # type: ignore[attr-defined] # isort: skip
348-
value_counts, # pyright: ignore[reportAttributeAccessIssue,reportAttributeAccessIssue]
348+
value_counts, # pyright: ignore[reportAttributeAccessIssue,reportAttributeAccessIssue,reportUnknownVariableType]
349349
)
350350

351351
return value_counts(

0 commit comments

Comments
 (0)