-
-
Notifications
You must be signed in to change notification settings - Fork 183
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
client + endpoint updates #48
Conversation
def __init__(self, *args, **kwargs): | ||
self._impl = ClientResponse(*args, **kwargs) | ||
self._body = None | ||
self._response = ClientResponse(*args, **kwargs) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This even better! Later we can figure out what exact methods and properties are used and only proxy those.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let me know if you want me to put it back to _impl
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
_resonpce
is more clear I think
Tests are green, changed looks good! |
Probably I will add some code to the tests today, so we can do |
cool! sorry about my unittest laziness :) |
this continues #44