Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesWesch committed Apr 11, 2024
1 parent a0669bf commit 3a6b3ae
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/examples/issue_classification_user_journey/jira_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@


class JiraService(ABC):
@abstractmethod
def closed_labeled_tickets(
@abstractmethod
def closed_labeled_tickets(
self, project_id: str, since: datetime
) -> Sequence[Ticket]:
pass
@abstractmethod
def open_unlabeled_tickets(

@abstractmethod
def open_unlabeled_tickets(
self, project_id: str, since: datetime, classification_labels: Sequence[str]
) -> Sequence[Ticket]:
pass
@abstractmethod
def wait(self) -> bool:
pass

@abstractmethod
def wait(self) -> bool:
pass

0 comments on commit 3a6b3ae

Please sign in to comment.