(self)
| 352 | # error: Cannot override writeable attribute with read-only property |
| 353 | @property |
| 354 | def _constructor_sliced(self): # type: ignore[override] |
| 355 | return lambda *args, **kwargs: SubclassedSeries(*args, **kwargs) |
| 356 | |
| 357 | |
| 358 | def convert_rows_list_to_csv_str(rows_list: list[str]) -> str: |
no test coverage detected