I’m trying to restore previous run that was execut...
# ask-metaflow
l
I’m trying to restore previous run that was executed on K8s.
Copy code
from metaflow import Run
run = Run('DatabaseAndS3Test/229')
print(run.tags)
mycode = Run('DatabaseAndS3Test/229').code
print(mycode.path)
run.code.extract(path='~/_nasHome/tools/restore')
This code gives me an error AttributeError: ‘MetaflowCode’ object has no attribute ‘extract’ Any ideas on what am I doing wrong?
1