Commit a084c8f
committed
fix: mdstore: fix MetadataStore.dumps(format="md")
MetadataStore.dumps(format="md") was failing with
TypeError: Object of type dict_items is not JSON serializable
... because self.items() returns dictitems() - while only a dict would be serializable into JSON.
Convert the dictitems back into a dict.1 parent f72e286 commit a084c8f
1 file changed
+2
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1693 | 1693 | | |
1694 | 1694 | | |
1695 | 1695 | | |
1696 | | - | |
| 1696 | + | |
| 1697 | + | |
0 commit comments