We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b260a99 commit 667750bCopy full SHA for 667750b
1 file changed
wikitextparser/_table.py
@@ -314,7 +314,7 @@ def caption_attrs(self, attrs: str) -> None:
314
self[m.end('preattrs'):end] = attrs
315
316
@property
317
- def row_attrs(self) -> list[dict]:
+ def row_attrs(self) -> List[dict]:
318
"""Row attributes.
319
320
Use the setter of this property to set attributes for all rows.
@@ -335,7 +335,7 @@ def row_attrs(self) -> list[dict]:
335
return attrs
336
337
@row_attrs.setter
338
- def row_attrs(self, attrs: list[dict]):
+ def row_attrs(self, attrs: List[dict]):
339
for row_match, attrs_dict in reversed(
340
[*zip(FIND_ROWS(self._table_shadow), attrs)]
341
):
0 commit comments