tiborpilz / commitomatic

Missing class docstring PY-D0002
Documentation
Minor
a year agoa year old
Docstring missing for class Repository
  8from git import Repo
  9
 10
 11class Repository(): 12    repo = Repo(Path.cwd())
 13
 14    def __init__(self, path: Path, use_staged: bool = True):