mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-09 11:03:15 -06:00
refactor: swap hardcode with loop
This commit is contained in:
parent
993e0e699b
commit
439d5292c1
1 changed files with 10 additions and 11 deletions
|
@ -50,7 +50,7 @@ from typing import (
|
|||
from urllib.error import HTTPError
|
||||
from urllib.request import urlopen
|
||||
|
||||
__version__ = "23.5a4-43-gcdeed9f-dev"
|
||||
__version__ = "23.5a4-43-g993e0e6-dev"
|
||||
|
||||
|
||||
class Spinner:
|
||||
|
@ -1361,16 +1361,15 @@ class Cli:
|
|||
)
|
||||
).update(
|
||||
{
|
||||
# "exe": dict(
|
||||
# pip=dict(help="run cmd with pip"),
|
||||
# python=dict(help="run cmd with python"),
|
||||
# ),
|
||||
"manage": dict(
|
||||
show=dict(help="show current installation", aliases=["s"]),
|
||||
install=dict(help="install fresh viv", aliases=["i"]),
|
||||
update=dict(help="update viv version", aliases=["u"]),
|
||||
purge=dict(help="remove traces of viv", aliases=["p"]),
|
||||
),
|
||||
"manage": {
|
||||
subcmd: {"help": help, "aliases": [subcmd[0]]}
|
||||
for subcmd, help in (
|
||||
("show", "show current installation"),
|
||||
("install", "install fresh viv"),
|
||||
("update", "update viv version"),
|
||||
("purge", "remove traces of viv"),
|
||||
)
|
||||
}
|
||||
}
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue