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 got the same issue with list_servers_all() and list_servers(), also on python 3.12.
It seems to happen when I have no server running. The api function unmarshal_ListServersResponse
receives {'servers': []}
Either scaleway should also return a total_count=0 in that case, or field = data.get("total_count", None) in unmarshal_ListServersResponse could be changed to field = data.get("total_count", 0) to have a default count at 0 if no value is provided
In Python SDK v2.3.1, I have an error when calling
list_servers_types(zone='fr-par-2', per_page=10)
The error is:
Using Python 3.12
The text was updated successfully, but these errors were encountered: