Boaz Zimmerman

Results 2 comments of Boaz Zimmerman

To give more context, this is the value of `headers` as was captured by the debugger: `[b'[{"name":"Content-Type","value":"application/json"}]']`

My local fix: `headers = dict(map(lambda x: (x['name'], x['value']), json.loads(headers[0].decode('UTF-8'))))`