Skip to content

Commit

Permalink
build: test
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexis Beaulieu committed Jul 5, 2022
1 parent 905db8a commit c14a87d
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions pygitm/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,17 @@

import pytcm

from pygitm.options import (AddOptions, CheckoutOptions, CloneOptions,
CommitOptions, PullOptions, PushOptions)
from pygitm.options import (
AddOptions,
CheckoutOptions,
CloneOptions,
CommitOptions,
PullOptions,
PushOptions,
)

git_command = partial(pytcm.execute, "git")

git_command = partial(pytcm.execute, 'git')

def clone(opts: CloneOptions, cwd: str = ...) -> pytcm.CommandResult:
return git_command(opts.to_list(), cwd)
Expand Down

0 comments on commit c14a87d

Please sign in to comment.