Skip to content
Advertisement

How to make a custom annotation that the type checker will recognize as str?

I want to use the argument annotation to define a parser for the argument.

Here is an example:

JavaScript

The problem is when I call the function with an argument of type str the type checker warns me that it’s not of type parser.

JavaScript

My question: How can I get the best of both worlds and use the annotation feature to get parser where the type checker will get str? (Preferably without using Union)

Maybe if something like this could work:

JavaScript

Sort of like Optional or Union return one object but the type checker analyzes them as different objects.

Advertisement

Answer

Python 3.9 added the Annotated type, so you can do this:

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement