I observe that missing files are silently ignored when using load_name:
import confidence
config = confidence.load_name('this_file_does_not_exist')
print(config)
-->
<confidence.models.Configuration keys={}>
Process finished with exit code 0
From the documentation in io.loadf() and #21 it seems to be that this is not the intended behavior.
Unfortunately, I could not immediatly figure out why the code is misbehaving: it looks fine to me but my debugger is failing to implement the proper breakpoints inside of Confidence.
I observe that missing files are silently ignored when using
load_name:-->
From the documentation in
io.loadf()and #21 it seems to be that this is not the intended behavior.Unfortunately, I could not immediatly figure out why the code is misbehaving: it looks fine to me but my debugger is failing to implement the proper breakpoints inside of Confidence.