@@ -40,7 +40,7 @@ class FooterColumnCountMismatchError(ColumnCountMismatchError):
40
40
This class is a subclass of :class:`ColumnCountMismatchError`.
41
41
42
42
Attributes:
43
- footer (:class:`Sequence <collections.abc.Sequence>`\ [:class:`SupportsStr`]):
43
+ footer (:class:`Sequence <collections.abc.Sequence>` [:class:`SupportsStr`]):
44
44
The footer that caused the error
45
45
expected_columns (:class:`int`): The number of columns that were expected
46
46
"""
@@ -64,10 +64,10 @@ class BodyColumnCountMismatchError(ColumnCountMismatchError):
64
64
This class is a subclass of :class:`ColumnCountMismatchError`.
65
65
66
66
Attributes:
67
- body (:class:`Sequence <collections.abc.Sequence>`\ [\ :class:`Sequence <collections.abc.Sequence>`\ [:class:`SupportsStr`]]):
67
+ body (:class:`Sequence <collections.abc.Sequence>` [ :class:`Sequence <collections.abc.Sequence>` [:class:`SupportsStr`]]):
68
68
The body that caused the error
69
69
expected_columns (:class:`int`): The number of columns that were expected
70
- first_invalid_row (:class:`Sequence <collections.abc.Sequence>`\ [:class:`SupportsStr`]):
70
+ first_invalid_row (:class:`Sequence <collections.abc.Sequence>` [:class:`SupportsStr`]):
71
71
The first row with an invalid column count
72
72
"""
73
73
@@ -93,7 +93,7 @@ class AlignmentCountMismatchError(ColumnCountMismatchError):
93
93
This class is a subclass of :class:`ColumnCountMismatchError`.
94
94
95
95
Attributes:
96
- alignments (:class:`Sequence <collections.abc.Sequence>`\ [:class:`Alignment`]):
96
+ alignments (:class:`Sequence <collections.abc.Sequence>` [:class:`Alignment`]):
97
97
The alignments that caused the error
98
98
expected_columns (:class:`int`): The number of columns that were expected
99
99
"""
@@ -117,7 +117,7 @@ class ColumnWidthsCountMismatchError(ColumnCountMismatchError):
117
117
This class is a subclass of :class:`ColumnCountMismatchError`.
118
118
119
119
Attributes:
120
- column_widths (:class:`Sequence <collections.abc.Sequence>`\ [:data:`Optional <typing.Optional>`\ [:class:`int`]]):
120
+ column_widths (:class:`Sequence <collections.abc.Sequence>` [:data:`Optional <typing.Optional>` [:class:`int`]]):
121
121
The column widths that caused the error
122
122
expected_columns (:class:`int`): The number of columns that were expected
123
123
"""
0 commit comments