fix(local_git): add interface method stubs for local git provider compatibility

This commit is contained in:
polacekpavel
2025-01-15 18:19:36 +01:00
parent 1997da3aac
commit fe6540275c

View File

@ -141,6 +141,18 @@ class LocalGitProvider(GitProvider):
def remove_comment(self, comment): def remove_comment(self, comment):
pass # Not applicable to the local git provider, but required by the interface pass # Not applicable to the local git provider, but required by the interface
def add_eyes_reaction(self, comment):
pass # Not applicable to the local git provider, but required by the interface
def get_commit_messages(self):
pass # Not applicable to the local git provider, but required by the interface
def get_repo_settings(self):
pass # Not applicable to the local git provider, but required by the interface
def remove_reaction(self, comment):
pass # Not applicable to the local git provider, but required by the interface
def get_languages(self): def get_languages(self):
""" """
Calculate percentage of languages in repository. Used for hunk prioritisation. Calculate percentage of languages in repository. Used for hunk prioritisation.