Skip to content

Commit 48c95be

Browse files
committed
docs(BaseProject): Document class properties
1 parent 6d0b58a commit 48c95be

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libvcs/projects/base.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ def convert_pip_url(pip_url: str) -> VCSLocation:
3535
class BaseProject:
3636
"""Base class for repositories."""
3737

38-
#: log command output to buffer
3938
log_in_real_time = None
39+
"""Log command output to buffer"""
4040

41-
#: vcs app name, e.g. 'git'
4241
bin_name = ""
42+
"""VCS app name, e.g. 'git'"""
4343

44-
#: Stub out scheme list
4544
schemes = ()
45+
"""List of supported schemes to register in ``urlparse.uses_netloc``"""
4646

4747
def __init__(self, *, url: str, dir: StrPath, progress_callback=None, **kwargs):
4848
r"""

0 commit comments

Comments
 (0)