Closed MoritzNeuberger closed 1 year ago
Attention: 1 lines
in your changes are missing coverage. Please review.
Files | Coverage Δ | |
---|---|---|
src/pygama/flow/data_loader.py | 77.07% <85.71%> (-0.02%) |
:arrow_down: |
:loudspeaker: Thoughts on this report? Let us know!.
This looks straightforward to me, I will merge it.
drop_idx
inbuild_entry_list
was not filled if no cuts were set by removing thecontinue
condition and making the default value of cutcut = ""
which is changed ifself.cuts is not None
andlevel in self.cuts.keys()
.continue
condition ifself.table_list is not None
but notlevel in self.table_list.keys()
. Otherwise the loop overtables
would throw an error.