Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2022-02-27 22:30:43 -08:00
parent 0ceebbee9c
commit 669b7aded0
4 changed files with 13 additions and 10 deletions

View File

@ -143,6 +143,9 @@ def generatePath(
params_str += ', ' + \
camel_to_snake(parameter_name) + '=' + parameter_type
if request_body_type:
params_str += ', body=' + request_body_type
example = """from kittycad.models import """ + success_type + """
from kittycad.api.""" + tag_name + """ import """ + fn_name + """
from kittycad.types import Response