Add types for DataFrame.itertuples()
and DataFrame.iterrows()
#805
Labels
DataFrame.itertuples()
and DataFrame.iterrows()
#805
Right now,
DataFrame.itertuples()
andDataFrame.iterrows()
both don't have return types.itertuples()
can returnIterable[tuple[Any, ...]]
in the stubsiterrows()
can returnIterable[tuple[Hashable, Series]]:
in the stubsThe text was updated successfully, but these errors were encountered: