unioslo / mreg-cli

Command Line Interface for Mreg
GNU General Public License v3.0
2 stars 7 forks source link

Remove `getattr()` usage in `_request_wrapper()`. #274

Closed pederhan closed 4 months ago

pederhan commented 4 months ago

This PR adds a Literal annotation for the different requests.Session methods we invoke in _request_wrapper. By declaring the methods we can possibly call, we get better type inference - which in turn removes the need for using typing.cast.

This approach is a little more verbose, but makes it much easier to reason with the code as well as improving type safety.