Return a list of the worksheet objects in the workbook. Args: None. Returns: A list of worksheet objects.
(self)
| 611 | return 0 |
| 612 | |
| 613 | def worksheets(self) -> List[Worksheet]: |
| 614 | """ |
| 615 | Return a list of the worksheet objects in the workbook. |
| 616 | |
| 617 | Args: |
| 618 | None. |
| 619 | |
| 620 | Returns: |
| 621 | A list of worksheet objects. |
| 622 | |
| 623 | """ |
| 624 | return self.worksheets_objs |
| 625 | |
| 626 | def get_worksheet_by_name(self, name: str) -> Optional[Worksheet]: |
| 627 | """ |
no outgoing calls
no test coverage detected