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 5626471 commit 4210a1aCopy full SHA for 4210a1a
jsonpycraft/manager/configuration.py
@@ -41,14 +41,22 @@ def __init__(
41
42
self._indent = indent
43
44
+ @property
45
+ def keys(self) -> list[str]:
46
+ return self._map_template.keys
47
+
48
49
+ def data(self) -> JSONMap:
50
+ return self._map_template.data
51
52
def mkdir(self) -> None:
53
"""
54
Create the directory for the JSON file.
55
56
Raises:
57
JSONFileErrorHandler: If there is an error creating the directory for the JSON file.
58
- return self._map_template.make_directory()
59
+ return self._map_template.mkdir()
60
61
def load(self) -> None:
62
0 commit comments