Replies: 1 comment
-
If I got it correctly, answer is yes, we consistently do not implement any argument validity check in python. The main reason is that we use type annotations and mypy. This gives us all the benefits of static type checking, and does not generally require any further explicit check in code with some performance penalty. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Example: In the generated service class:
If the parameter(request_data) is an outlier or null value, an exception will be thrown. Is there an optimization solution?
Beta Was this translation helpful? Give feedback.
All reactions