Merge pull request #1778 from smartandhandsome/main

Cleanup: Remove Unused import and Fix Parameter Typo
This commit is contained in:
Tal 2025-05-16 16:54:55 +03:00 committed by GitHub
commit d268db5f0d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 3 deletions

View file

@ -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

View file

@ -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