-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Day 55-57 results in Type Error for __init__ #53
Comments
@salro I cannot reproduce this error, what version of Python are you using and can you post a @mikeckennedy I do hit another issue upon writing a post:
But the response json has 3 items:
So it fails with:
I can patch it but waiting for @salro's response on the other issue ... |
Hi @bbelderbos . I am working on Python 3.9 and here is the pip freeze: certifi==2020.12.5 Edit: Also tried it on Python 3.6 with the same error. Thanks for your help. |
@salro yeah with |
Actually I am a bit confused @mikeckennedy, is the
(full JSON output from Could you please check? Thanks |
@bbelderbos I missed the correct version number for uplink. Thanks for pointing it out and I will use the correct one now. |
In v0.9.3, the `StandardCoverter.create_response_body_converter` was changed to a pass-through converter: i.e., the method would simply return the given type as the response converter. This can cause unintended behavior in the case when the consumer method has a return annotation that is not handled by any registered converters. In this case, the converter chain will invoke the standard coverter's behavior, and try to convert the runtime response by invoking the annotated type's constructor. This can cause failures that are difficult to debug for end users, such as talkpython/100daysofcode-with-python-course#53. This regression was introduced in 89c43d1 (#204).
Hi all. I believe this was a bug in 0.9.3 of uplink. We are now at 0.9.4 and it seems to work again as you would expect. Sorry for the trouble. Incoming update in 3, 2, 1, ... |
Hi.
When I execute program.py for the Day 55-57 example I run into the following Type Error:
File "C:\Users\salro\PycharmProjects\100daysofcode-with-python-course\venv\lib\site-packages\uplink\hooks.py", line 103, in handle_response
response = hook.handle_response(consumer, response)
File "C:\Users\salro\PycharmProjects\100daysofcode-with-python-course\venv\lib\site-packages\uplink\hooks.py", line 20, in wrapper
return hook(*args, **kwargs)
File "C:\Users\salro\PycharmProjects\100daysofcode-with-python-course\venv\lib\site-packages\uplink\returns.py", line 39, in call
return self._strategy(*args, **kwargs)
TypeError: init() takes 1 positional argument but 2 were given
I tried multiple angles I am familiar with but nothing has worked so far.
The text was updated successfully, but these errors were encountered: