pyhocon icon indicating copy to clipboard operation
pyhocon copied to clipboard

ConfigTree can't have a value

Open blvp opened this issue 6 years ago • 0 comments

For example,

>>> from pyhocon import ConfigFactory
>>> ConfigFactory.parse_string("""
... a = aaa
... a.b = bbb
... a.c = ccc
... """)
ConfigTree([('a', ConfigTree([('b', u'bbb'), ('c', u'ccc')]))])
pip freeze | grep pyhocon
pyhocon==0.3.44

blvp avatar Jul 23 '18 23:07 blvp