From 6b48e8c5f1a0e5c93a0a13e37ff7736d6409de92 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Thu, 10 Aug 2023 10:53:46 -0500 Subject: [PATCH] fix: remove non-arg --- src/viv/viv.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/viv/viv.py b/src/viv/viv.py index 6bdf057..ddc6424 100755 --- a/src/viv/viv.py +++ b/src/viv/viv.py @@ -55,7 +55,7 @@ from typing import ( from urllib.error import HTTPError from urllib.request import urlopen -__version__ = "23.8a3-7-g560871e-dev" +__version__ = "23.8a3-10-g505e79f-dev" class Spinner: @@ -1478,7 +1478,7 @@ class Viv: elif path: sys.stdout.write(f"{vivenv.path.absolute()}\n") else: - vivenv.tree(size=size) + vivenv.tree() def _install_local_src(self, sha256: str, src: Path, cli: Path, yes: bool) -> None: log.info("updating local source copy of viv")