summaryrefslogtreecommitdiff
path: root/lib/model.py
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2021-08-23 16:18:30 +0200
committerDaniel Friesel <daniel.friesel@uos.de>2021-08-23 16:18:30 +0200
commit693fa1b637b4cb2eb3796a4ac1376baf0552b8d4 (patch)
tree0f86ef4fa53edbd1113195727659f109fccdfe34 /lib/model.py
parent971182ab8a74d6c545aba344ad57c9da835e7e7c (diff)
remove unused legacy attr.build_dtree code
model.build_dtree does belong into attr, but that's a different commit
Diffstat (limited to 'lib/model.py')
-rw-r--r--lib/model.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/model.py b/lib/model.py
index c9b0e33..dc0cb4d 100644
--- a/lib/model.py
+++ b/lib/model.py
@@ -151,11 +151,6 @@ class AnalyticModel:
paramstats.compute()
- if not os.getenv("DFATOOL_NO_DECISIONTREES"):
- for name in self.names:
- for attr in self.attr_by_name[name].values():
- attr.build_dtree()
-
def attributes(self, name):
return self.attr_by_name[name].keys()