diff --git a/_static/reports/coverage/coverage-badge.svg b/_static/reports/coverage/coverage-badge.svg
index ed420471..de4935f2 100644
--- a/_static/reports/coverage/coverage-badge.svg
+++ b/_static/reports/coverage/coverage-badge.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/_static/reports/junit/tests-badge.svg b/_static/reports/junit/tests-badge.svg
index d40a96bc..7e3c9cc4 100644
--- a/_static/reports/junit/tests-badge.svg
+++ b/_static/reports/junit/tests-badge.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/mtbp3/health/emt.py b/mtbp3/health/emt.py
index 7b8f3d41..92193cfa 100644
--- a/mtbp3/health/emt.py
+++ b/mtbp3/health/emt.py
@@ -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'])
@@ -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__":