File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 55
66from mltrace .db import Store
77from mltrace import utils as clientUtils
8- from mltrace .entities import ComponentRun , IOPointer
8+ from mltrace .entities import base
99
1010
1111class History (object ):
@@ -42,11 +42,11 @@ def convertToClient(componentRuns):
4242 component_runs = []
4343 for cr in componentRuns :
4444 inputs = [
45- IOPointer .from_dictionary (iop .__dict__ ).to_dictionary ()
45+ base .from_dictionary (iop .__dict__ ).to_dictionary ()
4646 for iop in cr .inputs
4747 ]
4848 outputs = [
49- IOPointer .from_dictionary (iop .__dict__ ).to_dictionary ()
49+ base .from_dictionary (iop .__dict__ ).to_dictionary ()
5050 for iop in cr .outputs
5151 ]
5252 dependencies = [dep .component_name for dep in cr .dependencies ]
@@ -58,7 +58,7 @@ def convertToClient(componentRuns):
5858 "dependencies" : dependencies ,
5959 }
6060 )
61- component_runs .append (ComponentRun .from_dictionary (d ))
61+ component_runs .append (base .from_dictionary (d ))
6262 return component_runs
6363
6464 def __getitem__ (self , index ):
You can’t perform that action at this time.
0 commit comments