Hi there, I love this project... I received a typeerror message on the :5000 instance. This was resolved by replacing chain = json.loads(response.content) with chain = json.loads(response.content.decode('utf-8')) in the '/app/view.py' file
Hi there,
I love this project... I received a typeerror message on the :5000 instance. This was resolved by replacing
chain = json.loads(response.content)
with
chain = json.loads(response.content.decode('utf-8'))
in the '/app/view.py' file