Return the schema

This commit is contained in:
mike cullerton 2022-02-02 12:04:28 -05:00
parent ec054bbdf1
commit 55697c6c88

View File

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