We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8385837 commit c793744Copy full SHA for c793744
arho_feature_template/core/feature_template_library.py
@@ -19,6 +19,8 @@ class FeatureTemplateLibrary:
19
def __init__(self, json_path: str | PathLike):
20
self.templates = []
21
library_dict = self.read_json(json_path)
22
+ self.name = library_dict.get(JsonKeys.NAME)
23
+ self.version = library_dict.get(JsonKeys.VERSION)
24
self.build_templates(library_dict)
25
26
def read_json(self, json_path: str | PathLike) -> dict:
0 commit comments