We are running into a problem when retrieving arti...
# ask-metaflow
s
We are running into a problem when retrieving artifacts from previous flows, are we doing something wrong here?
Copy code
>>> from metaflow import namespace, Flow
>>> data = Flow("TestSitesFlow/1858/join_metrics/28465").latest_run.data
>>> data
<MetaflowData: name>
>>> data.name
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/opt/homebrew/lib/python3.10/site-packages/metaflow/client/core.py", line 736, in __getattr__
    return self._artifacts[name].data
  File "/opt/homebrew/lib/python3.10/site-packages/metaflow/client/core.py", line 902, in data
    obj = filecache.get_artifact(ds_type, location[6:], meta, *components)
TypeError: FileCache.get_artifact() takes 9 positional arguments but 12 were given