@@ -108,7 +108,7 @@ def parse_yaml(self, config_string: str) -> Dict:
108108 config_string (str): A config as raw yaml string.
109109
110110 Returns:
111- Dict | None : Parsed config as a Python dict.
111+ Dict: Parsed config as a Python dict.
112112 """
113113 config_raw = self .client .query ("ReadConfig" , arg = config_string )
114114 config_object = yaml .safe_load (config_raw )
@@ -123,7 +123,7 @@ def parse_json(self, config_string: str) -> Dict:
123123 config_string (str): A config as raw json string.
124124
125125 Returns:
126- Dict | None : Parsed config as a Python dict.
126+ Dict: Parsed config as a Python dict.
127127 """
128128 config_raw = self .client .query ("ReadConfigJson" , arg = config_string )
129129 config_object = json .loads (config_raw )
@@ -137,7 +137,7 @@ def read_and_parse_file(self, filename: str) -> Dict:
137137 filename (str): Path to a config file.
138138
139139 Returns:
140- Dict | None : Parsed config as a Python dict.
140+ Dict: Parsed config as a Python dict.
141141 """
142142 config_raw = self .client .query ("ReadConfigFile" , arg = filename )
143143 config = yaml .safe_load (config_raw )
@@ -193,7 +193,7 @@ def validate(self, config_object: Dict) -> Dict:
193193 config_object (Dict): A configuration as a Python dict.
194194
195195 Returns:
196- Dict | None : Validated config as a Python dict.
196+ Dict: Validated config as a Python dict.
197197 """
198198 config_string = yaml .dump (config_object )
199199 validated_string = self .validate_yaml (config_string )
0 commit comments