Skip to content

Commit

Permalink
Add typing
Browse files Browse the repository at this point in the history
  • Loading branch information
ehooo committed Oct 8, 2024
1 parent c00b775 commit a333a3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lima_api/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ def __init__(
):
if detail is not None:
self.detail = detail
self.status_code = status_code
self.content = content
self.status_code: Optional[int] = status_code
self.content: Optional[bytes] = content

def __repr__(self) -> str:
class_name = self.__class__.__name__
Expand Down

0 comments on commit a333a3c

Please sign in to comment.