Skip to content

Commit 7c5b7d4

Browse files
author
Alan Christie
committed
fix: DefaultMunch fromDict typo fixes
1 parent 2a76905 commit 7c5b7d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/jote/jote.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ def _load(
251251
manifest: dict[str, Any] = yaml.load(manifest_file, Loader=yaml.FullLoader)
252252
manifest_munch: DefaultMunch | None = None
253253
if manifest:
254-
manifest_munch = DefaultMunch.fromdict(manifest)
254+
manifest_munch = DefaultMunch.fromDict(manifest)
255255
assert manifest_munch
256256

257257
# Iterate through the named files.
@@ -286,7 +286,7 @@ def _load(
286286
job_def: dict[str, Any] = yaml.load(jd_file, Loader=yaml.FullLoader)
287287

288288
if job_def:
289-
jd_munch: DefaultMunch = DefaultMunch.fromdict(job_def)
289+
jd_munch: DefaultMunch = DefaultMunch.fromDict(job_def)
290290

291291
jd_collection: str = jd_munch["collection"]
292292

0 commit comments

Comments
 (0)