(self, name: str)
| 96 | |
| 97 | @contextmanager |
| 98 | def section(self, name: str) -> Iterator[None]: |
| 99 | with super().section(style(name, bold=True, underline=True)): |
| 100 | try: |
| 101 | yield |
| 102 | finally: |
| 103 | pass |
| 104 | |
| 105 | @contextmanager |
| 106 | def indented_section(self, name: str, extra_indents: int = 0) -> Iterator[None]: |
no outgoing calls
no test coverage detected