From 86886394c033f14ef4e0a1e63987e09bef831699 Mon Sep 17 00:00:00 2001 From: Jonathan Wren Date: Mon, 26 Feb 2024 20:07:32 -0800 Subject: [PATCH] run formatter --- jrnl/plugins/util.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jrnl/plugins/util.py b/jrnl/plugins/util.py index 56d11906..6b569016 100644 --- a/jrnl/plugins/util.py +++ b/jrnl/plugins/util.py @@ -8,8 +8,9 @@ if TYPE_CHECKING: from jrnl.journals import Journal -"""https://stackoverflow.com/a/74873621/8740440""" class NestedDict(dict): + """https://stackoverflow.com/a/74873621/8740440""" + def __missing__(self, x): self[x] = NestedDict() return self[x]