From 14a3f06d9366e0d52943ea6190e62158108aba8d Mon Sep 17 00:00:00 2001 From: Aditi Mahajan Date: Sat, 11 Sep 2021 18:42:13 -0700 Subject: [PATCH] CR 3 --- mltrace/client.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/mltrace/client.py b/mltrace/client.py index b31e6fb..372ef4d 100644 --- a/mltrace/client.py +++ b/mltrace/client.py @@ -433,13 +433,6 @@ def get_recent_run_ids(limit: int = 5, last_run_id=None): return store.get_recent_run_ids(limit, last_run_id) -def get_all_run_ids(): - """Returns most all component run ids.""" - store = Store(_db_uri) - res = store.get_all_run_ids() - return [str(x[0]) for x in res] - - def get_io_pointer(io_pointer_id: str, create=True): """Returns IO Pointer metadata.""" store = Store(_db_uri)