Document what this Certbot's user agent string will be like.
()
| 142 | |
| 143 | |
| 144 | def sample_user_agent() -> str: |
| 145 | """Document what this Certbot's user agent string will be like.""" |
| 146 | # DummyConfig is designed to mock certbot.configuration.NamespaceConfig. |
| 147 | # Let mypy accept that. |
| 148 | return determine_user_agent(cast(configuration.NamespaceConfig, DummyConfig())) |
| 149 | |
| 150 | |
| 151 | def register(config: configuration.NamespaceConfig, account_storage: AccountStorage, |
no test coverage detected