Skip to content

Commit 07048bb

Browse files
authored
fix: document.add does not work on Linux (#487)
Co-authored-by: Rijken, M.A.M.M. (Marc) <[email protected]>
1 parent dacfe6a commit 07048bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/nitpick/blender.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ def traverse_toml_tree(document: tomlkit.TOMLDocument, dictionary):
551551
if key in document:
552552
traverse_toml_tree(document[key], value)
553553
else:
554-
document.add(key, value)
554+
document[key] = value
555555
else:
556556
document[key] = value
557557

0 commit comments

Comments
 (0)