Omry Yadan
Omry Yadan
@odelalleau, thoughts? I feel like interpolation should be evaluated and True should be returned they resolve to a missing key. For custom resolvers, I think the behavior should be True...
Another possible approach is code rewrite. ```python if a or b: ... ``` Can be rewritten as: ```python def body(): ... if a and b: body() # body covered via...
Hi Adam! Yeah, we can wait for it to get into scope. I think the GitHub stars should bring it into scope in a 4-6 months based on current growth...
Thanks @PeterShaggyNoble! As is, it looks too hard to identify, at least in your screen shot: 
Interpolation does not support arithmetic operations (there is an enhancement request in OmegaConf that I will consider in the future). For now, you could use to get the batch size...
Same problem. Too bad, this looks like a nice tool.
I get this with 0.14: ``` $ spielbash Traceback (most recent call last): File "/miniconda3/envs/hydra36/bin/spielbash", line 6, in from spielbash import main File "/miniconda3/envs/hydra36/lib/python3.6/site-packages/spielbash/__init__.py", line 189 print "Rolling scene \"%s\"..."...
Feel free to suggest patch to fix it (with tests).
Please provide minimal repro instructions. Please note that OmegaConf 2.4 dev releases no longer depends on antlr (they contains a vendored copy if it) which may help your problem.
`OmegaConf.select` treats "." as a separator. In theory it could be possible to extend it to support escaping of the `.` (e.g. select(cfg, "a\\.b") ), but this is not something...