Skip to content

Commit d115900

Browse files
committed
STYLE: lint
1 parent a851401 commit d115900

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

pandas/core/frame.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -782,8 +782,8 @@ def iteritems(self):
782782
r"""
783783
Iterator over (column name, Series) pairs.
784784
785-
Iterates over the DataFrame columns, returning a tuple with the column name
786-
and the content as a Series.
785+
Iterates over the DataFrame columns, returning a tuple with
786+
the column name and the content as a Series.
787787
788788
Yields
789789
------
@@ -794,8 +794,10 @@ def iteritems(self):
794794
795795
See Also
796796
--------
797-
DataFrame.iterrows : Iterate over DataFrame rows as (index, Series) pairs.
798-
DataFrame.itertuples : Iterate over DataFrame rows as namedtuples of the values.
797+
DataFrame.iterrows : Iterate over DataFrame rows as
798+
(index, Series) pairs.
799+
DataFrame.itertuples : Iterate over DataFrame rows as namedtuples
800+
of the values.
799801
800802
Examples
801803
--------

0 commit comments

Comments
 (0)