Skip to content

Commit 8c18dac

Browse files
committed
docs(projects/base): Remove unused imports, fix typo
1 parent 996da51 commit 8c18dac

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/projects/base.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ Adding your own VCS / Extending libvcs can be done through subclassing `BaseProj
88
.. autoapimodule:: libvcs.projects.base
99
:members:
1010
:show-inheritance:
11+
:exclude-members: run, CmdLoggingAdapter, mkdir_p, StrPath, logger
1112
```

libvcs/projects/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
"""Base class for Projectsitory objects."""
1+
"""Base class for VCS Project plugins."""
22
import logging
33
import pathlib
44
from typing import NamedTuple
55
from urllib import parse as urlparse
66

7-
from libvcs.utils.run import CmdLoggingAdapter, mkdir_p, run
87
from libvcs.types import StrPath
8+
from libvcs.utils.run import CmdLoggingAdapter, mkdir_p, run
99

1010
logger = logging.getLogger(__name__)
1111

0 commit comments

Comments
 (0)