I received this error after running the script below. I would like to create a json file through the result that is generated in this script. What can I do to correct this probl
The following produces a generator, which JSON can not serialize:
work_items = (wit_client.get_work_item(int(result.id)) for result in results)
You can instead make work_items a list, which JSON can serialize:
work_items
work_items = [wit_client.get_work_item(int(result.id)) for result in results]