refactor: swap hardcode with loop

This commit is contained in:
Daylin Morgan 2023-06-02 14:00:55 -05:00
parent 993e0e699b
commit 439d5292c1
Signed by: daylin
GPG key ID: C1E52E7DD81DF79F

View file

@ -50,7 +50,7 @@ from typing import (
from urllib.error import HTTPError from urllib.error import HTTPError
from urllib.request import urlopen from urllib.request import urlopen
__version__ = "23.5a4-43-gcdeed9f-dev" __version__ = "23.5a4-43-g993e0e6-dev"
class Spinner: class Spinner:
@ -1361,16 +1361,15 @@ class Cli:
) )
).update( ).update(
{ {
# "exe": dict( "manage": {
# pip=dict(help="run cmd with pip"), subcmd: {"help": help, "aliases": [subcmd[0]]}
# python=dict(help="run cmd with python"), for subcmd, help in (
# ), ("show", "show current installation"),
"manage": dict( ("install", "install fresh viv"),
show=dict(help="show current installation", aliases=["s"]), ("update", "update viv version"),
install=dict(help="install fresh viv", aliases=["i"]), ("purge", "remove traces of viv"),
update=dict(help="update viv version", aliases=["u"]), )
purge=dict(help="remove traces of viv", aliases=["p"]), }
),
} }
) )