There was an error while loading. Please reload this page.
1 parent b521b2d commit 06bb19fCopy full SHA for 06bb19f
markdownextradata/plugin.py
@@ -79,7 +79,7 @@ def on_pre_build(self, config):
79
(
80
yaml.load(filename.read_bytes(), Loader=yaml.FullLoader)
81
if filename.suffix in [".yml", ".yaml"]
82
- else json.load(filename.read_bytes())
+ else json.loads(filename.read_bytes())
83
),
84
)
85
0 commit comments