Skip to content

Commit 4544845

Browse files
committed
format
1 parent 90cb69e commit 4544845

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

pandas/io/formats/info.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -908,7 +908,9 @@ def add_separator_line(self) -> None:
908908
separator_line = self.SPACING.join(
909909
[
910910
_put_str("-" * header_colwidth, gross_colwidth)
911-
for header_colwidth, gross_colwidth in zip(self.header_column_widths, self.gross_column_widths)
911+
for header_colwidth, gross_colwidth in zip(
912+
self.header_column_widths, self.gross_column_widths
913+
)
912914
]
913915
)
914916
self._lines.append(separator_line)
@@ -977,7 +979,7 @@ def _gen_rows_without_counts(self) -> Iterator[Sequence[str]]:
977979
yield from zip(
978980
self._gen_line_numbers(),
979981
self._gen_columns(),
980-
self._gen_dtypes(),
982+
self._gen_dtypes(),
981983
)
982984

983985
def _gen_rows_with_counts(self) -> Iterator[Sequence[str]]:
@@ -986,7 +988,7 @@ def _gen_rows_with_counts(self) -> Iterator[Sequence[str]]:
986988
self._gen_line_numbers(),
987989
self._gen_columns(),
988990
self._gen_non_null_counts(),
989-
self._gen_dtypes(),
991+
self._gen_dtypes(),
990992
)
991993

992994
def _gen_line_numbers(self) -> Iterator[str]:
@@ -1092,7 +1094,7 @@ def _gen_rows_with_counts(self) -> Iterator[Sequence[str]]:
10921094
"""Iterator with string representation of body data with counts."""
10931095
yield from zip(
10941096
self._gen_non_null_counts(),
1095-
self._gen_dtypes()
1097+
self._gen_dtypes(),
10961098
)
10971099

10981100

0 commit comments

Comments
 (0)