Return the schema

This commit is contained in:
mike cullerton 2022-02-02 10:04:02 -05:00
parent 8a8c3de8c4
commit 1cb6465f22

View File

@ -12,7 +12,8 @@ def pull_from_remote():
def push_to_remote(comment=None): def push_to_remote(comment=None):
return GitService().push_to_remote(comment) repo_model = GitService().push_to_remote(comment)
return GitRepoSchema().dump(repo_model)
def merge_with_branch(branch): def merge_with_branch(branch):