Skip to content

Commit 3aca083

Browse files
authored
Fix mlc show cache (#202)
1 parent a15204b commit 3aca083

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.9
1+
1.1.11

mlc/main.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -329,9 +329,6 @@ def main():
329329
print(help_text)
330330
sys.exit(0)
331331

332-
# show repos alias list repo
333-
if args.command in ("show"):
334-
args.command = "list"
335332
if args.target == "repos":
336333
args.target = "repo"
337334

mlc/repo_action.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -446,6 +446,8 @@ def pull(self, run_args):
446446

447447
return {'return': 0}
448448

449+
def show(self, run_args):
450+
return self.list(run_args)
449451

450452
def list(self, run_args):
451453
"""

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "mlcflow"
7-
version = "1.1.8"
7+
version = "1.1.11"
88

99
description = "An automation interface tailored for CPU/GPU benchmarking"
1010
authors = [

0 commit comments

Comments
 (0)