7 lines
171 B
Python
7 lines
171 B
Python
|
from typing import Any
|
||
|
|
||
|
from pandas._typing import DtypeObj
|
||
|
|
||
|
def check_result_array(obj: object, dtype: DtypeObj) -> None: ...
|
||
|
def extract_result(res: object) -> Any: ...
|