Jérémy Rabasco
Jérémy Rabasco
Following the equations on: https://en.wikipedia.org/wiki/Sunrise_equation#Hour_angle I also fixed the version at altitude 0 as it seems that the chosen base angle was slightly incorrect. And updated to go 1.22
The typing for `converter` [here](https://github.com/python/typeshed/blob/main/stdlib/logging/__init__.pyi#L270) is as follows: ```python converter: Callable[[float | None], struct_time] ``` And the typing for `time.gmtime`/`time.localtime` [here](https://github.com/python/typeshed/blob/main/stdlib/time.pyi#L72-L73) is: ```python def gmtime(seconds: float | None = None,...