Format docstring in parse_ini in src/jcloud_config_parser/parse/ini.py correctly

This commit is contained in:
2026-03-15 23:11:44 +01:00
parent e46a9784bb
commit e8e5bddf51
+2 -1
View File
@@ -143,7 +143,8 @@ def _compress_conf(conf):
return conf.strip()
def parse_ini(conf, comment_prefixes=_COMMENT_PREFIXES, quotation_marks=_QUOTATION_MARKS, ignore_errors: bool = False, global_group: bool = True) -> typing.Dict[str, typing.Dict[str, str]]:
'''Parses INI configuration from a string and returns a nested dictionary.
'''
Parses INI configuration from a string and returns a nested dictionary.
:param conf: The INI configuration string to parse.
:param comment_prefixes: A collection of prefixes that denote comments in the INI file.