mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-07-04 21:00:40 +08:00
Merge pull request #1778 from smartandhandsome/main
Cleanup: Remove Unused import and Fix Parameter Typo
This commit is contained in:
@ -6,8 +6,7 @@ from dynaconf import Dynaconf
|
|||||||
from starlette_context import context
|
from starlette_context import context
|
||||||
|
|
||||||
from pr_agent.config_loader import get_settings
|
from pr_agent.config_loader import get_settings
|
||||||
from pr_agent.git_providers import (get_git_provider,
|
from pr_agent.git_providers import get_git_provider_with_context
|
||||||
get_git_provider_with_context)
|
|
||||||
from pr_agent.log import get_logger
|
from pr_agent.log import get_logger
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ class Eligibility(Enum):
|
|||||||
|
|
||||||
class IdentityProvider(ABC):
|
class IdentityProvider(ABC):
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
def verify_eligibility(self, git_provider, git_provier_id, pr_url):
|
def verify_eligibility(self, git_provider, git_provider_id, pr_url):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
|
Reference in New Issue
Block a user