mirror of
https://github.com/certbot/certbot.git
synced 2026-07-22 13:53:18 +02:00
I don't love the `Any` in that `Callable`, but I can't find a way to fix it. In practice, it's either going to be `str` or `None`, but we pass an `options` that's typed as `List[str] | str | None`, and one of the functions has a header with a strict `str`. I tried various unions of things and it wasn't working and I decided it's not worth it. ``` $ mypy --strict certbot-apache/certbot_apache/_internal/configurator.py Success: no issues found in 1 source file ```