From ea0342dfa3b8576274e7010e99cb78046e21583c Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Tue, 30 May 2023 13:02:15 -0500 Subject: [PATCH] docs: update example with new default path --- examples/sys_path.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/sys_path.py b/examples/sys_path.py index dfef4fa..d8f6fd5 100644 --- a/examples/sys_path.py +++ b/examples/sys_path.py @@ -5,7 +5,7 @@ Embed the viv.py on the sys.path at runtime rather than using PYTHONPATH __import__("sys").path.append( - __import__("os").path.expanduser("~/.viv/src") + __import__("os").path.expanduser("~/.local/share/viv") ) # noqa # isort: off __import__("viv").use("pyfiglet") # noqa # isort: off