bunq / sdk_python

Python SDK for bunq API
MIT License
106 stars 25 forks source link

Add strictly typed BunqResponses #27

Closed dnl-blkv closed 6 years ago

dnl-blkv commented 6 years ago

How to Reproduce

  1. Write code to make a request via the SDK
  2. Write a code using the response of the request from (1)

What Should Happen

  1. The response.value has a strict type in docstring, and the IDE auto-completion works on it

What Happens

  1. The response.value doesn't have a strict type in docstring and therefore IDE auto-completion doesn't work on it
dnl-blkv commented 6 years ago

Fixed