We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I get half a screen full of warnings because the json converter encountered keys that it is not aware of. Example:
/usr/local/lib/python3.8/site-packages/bunq/sdk/json/converter.py:294: UserWarning: [bunq SDK beta] Key "style" in "Avatar" is unknown. warnings.warn(cls._WARNING_KEY_UNKNOWN.format(key, context_name)) /usr/local/lib/python3.8/site-packages/bunq/sdk/json/converter.py:294: UserWarning: [bunq SDK beta] Key "country" in "MonetaryAccountBank" is unknown. warnings.warn(cls._WARNING_KEY_UNKNOWN.format(key, context_name)) /usr/local/lib/python3.8/site-packages/bunq/sdk/json/converter.py:294: UserWarning: [bunq SDK beta] Key "timezone" in "MonetaryAccountBank" is unknown. warnings.warn(cls._WARNING_KEY_UNKNOWN.format(key, context_name)) /usr/local/lib/python3.8/site-packages/bunq/sdk/json/converter.py:294: UserWarning: [bunq SDK beta] Key "profile_action_required" in "MonetaryAccountProfile" is unknown.
The text was updated successfully, but these errors were encountered:
You can turn off these warnings by importing the warning module: https://docs.python.org/3/library/warnings.html
warning
import warnings warnings.simplefilter("ignore")
^ that should do the trick
Sorry, something went wrong.
No branches or pull requests
Steps to reproduce:
What should happen:
What happens:
I get half a screen full of warnings because the json converter encountered keys that it is not aware of. Example:
SDK version and environment
The text was updated successfully, but these errors were encountered: