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
Describe the bug
When following the generated readme for a python client, I am receiving the following error TypeError: 'module' object is not callable
when making a call to the endpoint.
The direction I followed can be found in the readme here.
Expected behavior
The endpoint to be called with given arguments according to Readme.
Question
Is the correct behavior to do something like my_data: MyDataModel = get_my_data_model.sync_detail(client=client)
or my_data: MyDataModel = await get_my_data_model.asyncio_detailed(client=client)
Should the readme be updated? Or am I missing something.
Thanks!
The text was updated successfully, but these errors were encountered:
Describe the bug
When following the generated readme for a python client, I am receiving the following error
TypeError: 'module' object is not callable
when making a call to the endpoint.
The direction I followed can be found in the readme here.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The endpoint to be called with given arguments according to Readme.
Question
Is the correct behavior to do something like
my_data: MyDataModel = get_my_data_model.sync_detail(client=client)
or
my_data: MyDataModel = await get_my_data_model.asyncio_detailed(client=client)
Should the readme be updated? Or am I missing something.
Thanks!
The text was updated successfully, but these errors were encountered: