Skip to content

Commit

Permalink
v0.2.21
Browse files Browse the repository at this point in the history
  • Loading branch information
yh202109 committed Jul 29, 2024
1 parent 6014f0b commit 3147373
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion _static/reports/coverage/coverage-badge.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion _static/reports/junit/tests-badge.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions mtbp3/health/emt.py
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,7 @@ def show_fmq_tree(self, fmq=[], with_soc=False, ignore_case=False, to_right=Fals
list1 = pt_df['fmq_class'].unique().tolist()
lists = pt_df['fmq_class_soc'].unique().tolist()
list2 = pt_df['fmq_class_soc_pt'].unique().tolist()
tree = util.lsr.ListTree(lst = ['FMQ/']+list0+list1+lists+list2)
tree = util.cdt.ListTree(lst = ['FMQ/']+list0+list1+lists+list2)
return tree.list_tree(to_right=to_right)
else:
pt_df = pt_df.sort_values(by=['fmq', 'classification'])
Expand All @@ -775,7 +775,7 @@ def show_fmq_tree(self, fmq=[], with_soc=False, ignore_case=False, to_right=Fals

list1 = pt_df['fmq_class'].unique().tolist()
list2 = pt_df['fmq_class_pt'].unique().tolist()
tree = util.lsr.ListTree(lst = ['FMQ/']+list0+list1+list2)
tree = util.cdt.ListTree(lst = ['FMQ/']+list0+list1+list2)
return tree.list_tree(to_right=to_right)

if __name__ == "__main__":
Expand Down

0 comments on commit 3147373

Please sign in to comment.