MinJune Kim
MinJune Kim
I had the same problem with same error message and this seems to be the problem: https://github.com/ethereum/web3.py/issues/554#issuecomment-358077654 It says currently cytoolz is built with CPython option incompatible with AWS's version...
What is the policy on breaking changes of this project?
As a workaround I am doing this for now: ```python import urllib.parse # oauth_session.parse_authorization_response(request.url) # this is bugged qs_dict = urllib.parse.parse_qs(urllib.parse.urlparse(request.url).query) token = { 'oauth_token': qs_dict['oauth_token'][0], 'oauth_verifier': qs_dict['oauth_verifier'][0], } oauth_session.token...
Fun issues encountered with mypy until now: - https://github.com/python/typeshed/issues/1463 - (no issue yet) Missing stub for pkg_resources.Distribution.PKG_INFO - https://github.com/python/mypy/issues/5483 - (no issue yet, possibly non-issue) reveal_type(A.__doc__) is always `Optional[str]` even...
I've set the initial brew, which can be installed with `brew install spoqa/homebrew-nirum/nirum`. However it is currently build-from-source only because I was not able to set up homebrew bottles with...
It was a pretty simple fix since the code is very readable but I have one problem. I've changed `TKSwipeRecognizer` to set `TKGestureRecognizerState.RecognizedAndStillRecognizing` instead of `TKGestureRecognizerState.Recognized` to wait for `TKSwipeRecognizer.touchesEnded()`,...