The str implementation that is part of python-future is incompatible with urlencode. This caused the KeyError when attempting to pass an email address to requests. The python-future str implementation is meant to be a backport of the python3 str.
In this PR we go back to using unicode and silence the bogus flake8 error unicode raises
The
str
implementation that is part of python-future is incompatible with urlencode. This caused the KeyError when attempting to pass an email address to requests. The python-futurestr
implementation is meant to be a backport of the python3str
. In this PR we go back to usingunicode
and silence the bogus flake8 errorunicode
raisesFixes #275