Etienne Brateau
Results
1
issues of
Etienne Brateau
```python import pyhocon parser = pyhocon.ConfigFactory() conf2 = """ x: { months_key1: 6 months_key2: 1 } """ result = parser.parse_string(conf2) assert result.get("x").get("months_key1") == 6 assert result.get("x").get("months_key2") == 1 ``` This...