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
I am trying to port over some of our existing codebase to this new SDK and am having some issues trying to retrieve a single project (among a few others that will likely be separate GH issues).
Corellium SDK version installed via pip: corellium-api==0.3.2
I followed the instructions in the README file. This is my code that is reproducing the error:
File "/testing.py", line 14, in main
project = await client.v1_get_project(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/corellium_api/api_client.py", line 214, in __call_api
return_data = self.deserialize(response_data, response_type)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/corellium_api/api_client.py", line 286, in deserialize
return self.__deserialize(data, response_type)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/corellium_api/api_client.py", line 325, in __deserialize
return self.__deserialize_model(data, klass)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/corellium_api/api_client.py", line 695, in __deserialize_model
instance = klass(**kwargs)
^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/corellium_api/models/project.py", line 67, in __init__
self.id = id
^^^^^^^
File "/usr/local/lib/python3.11/site-packages/corellium_api/models/project.py", line 97, in id
raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ValueError: Invalid value for `id`, must not be `None`
When I use the previous client here, it works without issues.
The text was updated successfully, but these errors were encountered:
Description
I am trying to port over some of our existing codebase to this new SDK and am having some issues trying to retrieve a single project (among a few others that will likely be separate GH issues).
Corellium SDK version installed via
pip
:corellium-api==0.3.2
I followed the instructions in the README file. This is my code that is reproducing the error:
This results in the following error:
When I use the previous client here, it works without issues.
The text was updated successfully, but these errors were encountered: