I like making use of the typing capabilities in Python along with a static type check e.g. pyright. Unfortunately, not all libraries are completely typed. For example some functions may be generated at runtime (therefore missing) or the function return type is not specified because it depends on the input parameters.
These type of functions obviously result in warnings. How do you resolve these types of warnings from your type checker?