@@ -196,7 +196,7 @@ def get_version(self, model: str, version: str) -> dict:
196
196
return results
197
197
198
198
@cmd (name = 'list-runs' , description = 'List runs of an experiment' , return_required = True )
199
- def list_runs (self , experiment_name : str ) -> list :
199
+ def list_runs (self , experiment_name : str ):
200
200
"""
201
201
List runs of an experiment
202
202
@@ -232,7 +232,7 @@ def list_runs(self, experiment_name: str) -> list:
232
232
return results
233
233
234
234
@cmd (name = 'list-artifacts' , description = 'List artifacts of a run' , return_required = True , optionals = [('path' , str )])
235
- def _list_artifacts (self , run_id : str , ** kwargs ) -> list :
235
+ def _list_artifacts (self , run_id : str , ** kwargs ):
236
236
"""
237
237
List artifacts of a run
238
238
@@ -248,7 +248,7 @@ def _list_artifacts(self, run_id: str, **kwargs) -> list:
248
248
path = kwargs .get ('path' )
249
249
return self .list_artifacts (run_id , path )
250
250
251
- def list_artifacts (self , run_id : str , path : Optional [str ] = None ) -> list :
251
+ def list_artifacts (self , run_id : str , path : Optional [str ] = None ):
252
252
"""
253
253
List artifacts of a run
254
254
0 commit comments