Skip to content
New issue

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

Allow passing False as a property argument #3

Closed
jtc42 opened this issue Aug 17, 2020 · 0 comments
Closed

Allow passing False as a property argument #3

jtc42 opened this issue Aug 17, 2020 · 0 comments

Comments

@jtc42
Copy link
Member

jtc42 commented Aug 17, 2020

r = requests.put(self.self_url, json=value or {}) should be changed to something like:

if value is None:
    value = {}
r = requests.put(self.self_url, json=value)
@jtc42 jtc42 closed this as completed in 47b7b09 Aug 21, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant