microsoft / c9-python-getting-started

Sample code for Channel 9 Python for Beginners course
MIT License
7.75k stars 2.25k forks source link

Correct the misuse of json.dumps() #71

Open cococ0j opened 4 years ago

cococ0j commented 4 years ago

Correct the mistake where json.dumps() is used to convert dict to json object. Usually json.dumps() is used to convert JSON objects to Python String objects. So I purpose to use json.loads() here.

ghost commented 4 years ago

CLA assistant check
All CLA requirements met.