Options for documentation generation.
| 20 | |
| 21 | @dataclass |
| 22 | class GenerationOptions: |
| 23 | """Options for documentation generation.""" |
| 24 | create_branch: bool = False |
| 25 | github_pages: bool = False |
| 26 | no_cache: bool = False |
| 27 | custom_output: Optional[str] = None |
| 28 | |
| 29 | |
| 30 | @dataclass |
no outgoing calls
no test coverage detected