From 288197a8a3ac9ba243c07d98a60e5fa965135b7a Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Mon, 30 May 2022 19:26:16 -0500 Subject: [PATCH] !squash tweak --- libvcs/projects/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libvcs/projects/base.py b/libvcs/projects/base.py index ef157d4c0..e1b4d777e 100644 --- a/libvcs/projects/base.py +++ b/libvcs/projects/base.py @@ -44,7 +44,7 @@ class BaseProject(Protocol): schemes: Tuple[str, ...] = () """List of supported schemes to register in ``urlparse.uses_netloc``""" - dir: StrPath + dir: Optional[StrPath] """CWD of project""" def __init__(self, *, url: str, dir: StrPath, progress_callback=None, **kwargs):