We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a76905 commit 7c5b7d4Copy full SHA for 7c5b7d4
src/jote/jote.py
@@ -251,7 +251,7 @@ def _load(
251
manifest: dict[str, Any] = yaml.load(manifest_file, Loader=yaml.FullLoader)
252
manifest_munch: DefaultMunch | None = None
253
if manifest:
254
- manifest_munch = DefaultMunch.fromdict(manifest)
+ manifest_munch = DefaultMunch.fromDict(manifest)
255
assert manifest_munch
256
257
# Iterate through the named files.
@@ -286,7 +286,7 @@ def _load(
286
job_def: dict[str, Any] = yaml.load(jd_file, Loader=yaml.FullLoader)
287
288
if job_def:
289
- jd_munch: DefaultMunch = DefaultMunch.fromdict(job_def)
+ jd_munch: DefaultMunch = DefaultMunch.fromDict(job_def)
290
291
jd_collection: str = jd_munch["collection"]
292
0 commit comments