docs: update some of the docstrings

This commit is contained in:
Daylin Morgan 2023-05-29 14:43:42 -05:00
parent 158acbcbce
commit 819257c9bd
Signed by: daylin
GPG key ID: C1E52E7DD81DF79F

View file

@ -52,7 +52,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-3-g6ddd608-dev" __version__ = "23.5a4-4-g158acbc-dev"
class Config: class Config:
@ -1011,7 +1011,7 @@ class Viv:
a.table(rows) a.table(rows)
def exe(self, args: Namespace) -> None: def exe(self, args: Namespace) -> None:
"""run python/pip in vivenv""" """run python/pip in existing vivenv"""
vivenv = self._match_vivenv(args.vivenv) vivenv = self._match_vivenv(args.vivenv)
@ -1246,7 +1246,7 @@ class Viv:
def run(self, args: Namespace) -> None: def run(self, args: Namespace) -> None:
"""\ """\
run an app w/ an on-demand venv run an app with an on-demand venv
examples: examples:
viv r pycowsay -- "Viv isn't venv\!" viv r pycowsay -- "Viv isn't venv\!"