You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Provide the ability to validate input/output values base on type hints. It's possible to use inspect.signature, typing.get_origin(), typing.get_args(), etc for retrieving information about type hints.
We'll need to create decorator, which analyzes type hints, generates the set of rules base in the hints and validates input/output data agaisnt these rules.
The text was updated successfully, but these errors were encountered:
Provide the ability to validate input/output values base on type hints. It's possible to use
inspect.signature
,typing.get_origin()
,typing.get_args()
, etc for retrieving information about type hints.We'll need to create decorator, which analyzes type hints, generates the set of rules base in the hints and validates input/output data agaisnt these rules.
The text was updated successfully, but these errors were encountered: