Skip to content

Commit

Permalink
prep for pr feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
nleach999 committed Sep 24, 2024
1 parent 49ce34f commit ecda0c4
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions scm_services/gh.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
from .scm import SCMService
# from api_utils.apisession import APISession
from scm_services.cloner import Cloner
from typing import Dict


class GHService(SCMService):
pass
__max_content_chars = 65535

async def exec_pr_decorate(self, organization : str, project : str, repo_slug : str, pr_number : str, scanid : str, full_markdown : str,
summary_markdown : str, event_msg : Dict=None):
raise NotImplementedError("exec_pr_decorate")

def create_code_permalink(self, organization : str, project : str, repo_slug : str, branch : str, code_path : str, code_line : str):
raise NotImplementedError("create_code_permalink")

0 comments on commit ecda0c4

Please sign in to comment.