|
80 | 80 | FloatFormatType = Union[str, Callable, "EngFormatter"] |
81 | 81 | ColspaceType = Mapping[Label, Union[str, int]] |
82 | 82 | ColspaceArgType = Union[ |
83 | | - str, int, Sequence[Union[str, int]], Mapping[Label, Union[str, int]], |
| 83 | + str, int, Sequence[Union[str, int]], Mapping[Label, Union[str, int]] |
84 | 84 | ] |
85 | 85 |
|
86 | 86 | common_docstring = """ |
@@ -741,7 +741,7 @@ def _to_str_columns(self) -> List[List[str]]: |
741 | 741 | for i, c in enumerate(frame): |
742 | 742 | fmt_values = self._format_col(i) |
743 | 743 | fmt_values = _make_fixed_width( |
744 | | - fmt_values, self.justify, minimum=col_space.get(c, 0), adj=self.adj, |
| 744 | + fmt_values, self.justify, minimum=col_space.get(c, 0), adj=self.adj |
745 | 745 | ) |
746 | 746 | stringified.append(fmt_values) |
747 | 747 | else: |
@@ -1069,7 +1069,7 @@ def _get_formatted_index(self, frame: "DataFrame") -> List[str]: |
1069 | 1069 | fmt_index = [ |
1070 | 1070 | tuple( |
1071 | 1071 | _make_fixed_width( |
1072 | | - list(x), justify="left", minimum=col_space.get("", 0), adj=self.adj, |
| 1072 | + list(x), justify="left", minimum=col_space.get("", 0), adj=self.adj |
1073 | 1073 | ) |
1074 | 1074 | ) |
1075 | 1075 | for x in fmt_index |
|
0 commit comments