@@ -40,7 +40,7 @@ class FooterColumnCountMismatchError(ColumnCountMismatchError):
4040 This class is a subclass of :class:`ColumnCountMismatchError`.
4141
4242 Attributes:
43- footer (:class:`Sequence <collections.abc.Sequence>`\ [:class:`SupportsStr`]):
43+ footer (:class:`Sequence <collections.abc.Sequence>` [:class:`SupportsStr`]):
4444 The footer that caused the error
4545 expected_columns (:class:`int`): The number of columns that were expected
4646 """
@@ -64,10 +64,10 @@ class BodyColumnCountMismatchError(ColumnCountMismatchError):
6464 This class is a subclass of :class:`ColumnCountMismatchError`.
6565
6666 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`]]):
6868 The body that caused the error
6969 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`]):
7171 The first row with an invalid column count
7272 """
7373
@@ -93,7 +93,7 @@ class AlignmentCountMismatchError(ColumnCountMismatchError):
9393 This class is a subclass of :class:`ColumnCountMismatchError`.
9494
9595 Attributes:
96- alignments (:class:`Sequence <collections.abc.Sequence>`\ [:class:`Alignment`]):
96+ alignments (:class:`Sequence <collections.abc.Sequence>` [:class:`Alignment`]):
9797 The alignments that caused the error
9898 expected_columns (:class:`int`): The number of columns that were expected
9999 """
@@ -117,7 +117,7 @@ class ColumnWidthsCountMismatchError(ColumnCountMismatchError):
117117 This class is a subclass of :class:`ColumnCountMismatchError`.
118118
119119 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`]]):
121121 The column widths that caused the error
122122 expected_columns (:class:`int`): The number of columns that were expected
123123 """
0 commit comments