Closed cokelaer closed 6 years ago
I have also found a potential bug in that file that is coming from line 721
def _print_base_histogram(title, hist, extra_width=4, index_name='Pos'):
When hist is None it throws an error and stops the report. Adding
if hist is None: _print("No Data") return
Allows the report to complete. I am not sure if this is related to the bug above or not.
Thanks to both of you! These fixes will go out in v1.1.16 today.
In principle, when we use a list of adapters, we get a report that looks like (if txt format is required):
followed by a section that looks like this for each adapters:
Now, in this case, the number of trimmed adapters is 550. If it was 0, the the whole report process is stopped. I believe this is a bug that occurs on line 582:
that should be