File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -908,7 +908,9 @@ def add_separator_line(self) -> None:
908
908
separator_line = self .SPACING .join (
909
909
[
910
910
_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
+ )
912
914
]
913
915
)
914
916
self ._lines .append (separator_line )
@@ -977,7 +979,7 @@ def _gen_rows_without_counts(self) -> Iterator[Sequence[str]]:
977
979
yield from zip (
978
980
self ._gen_line_numbers (),
979
981
self ._gen_columns (),
980
- self ._gen_dtypes (),
982
+ self ._gen_dtypes (),
981
983
)
982
984
983
985
def _gen_rows_with_counts (self ) -> Iterator [Sequence [str ]]:
@@ -986,7 +988,7 @@ def _gen_rows_with_counts(self) -> Iterator[Sequence[str]]:
986
988
self ._gen_line_numbers (),
987
989
self ._gen_columns (),
988
990
self ._gen_non_null_counts (),
989
- self ._gen_dtypes (),
991
+ self ._gen_dtypes (),
990
992
)
991
993
992
994
def _gen_line_numbers (self ) -> Iterator [str ]:
@@ -1092,7 +1094,7 @@ def _gen_rows_with_counts(self) -> Iterator[Sequence[str]]:
1092
1094
"""Iterator with string representation of body data with counts."""
1093
1095
yield from zip (
1094
1096
self ._gen_non_null_counts (),
1095
- self ._gen_dtypes ()
1097
+ self ._gen_dtypes (),
1096
1098
)
1097
1099
1098
1100
You can’t perform that action at this time.
0 commit comments