TIL from @adamchainz that when doing type annotations in #Python, `object` is preferable to `Any`, since the latter basically tells `mypy` to opt out of type checking.
https://adamj.eu/tech/2021/05/07/python-type-hints-use-object-instead-of-any/
TIL from @adamchainz that when doing type annotations in #Python, `object` is preferable to `Any`, since the latter basically tells `mypy` to opt out of type checking.
https://adamj.eu/tech/2021/05/07/python-type-hints-use-object-instead-of-any/