Skip to content

Commit

Permalink
style: add missing type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
zobweyt committed Nov 1, 2024
1 parent c8fcaae commit d5f63a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/v1/authors/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


class AuthorService:
def __init__(self, session: Session):
def __init__(self, session: Session) -> None:
self.session = session

def get_author(self, name: str) -> Author | None:
Expand Down

0 comments on commit d5f63a6

Please sign in to comment.