Skip to content

Commit

Permalink
Merge pull request #53 from MaxxRK/deepsource-autofix-0419bcc3
Browse files Browse the repository at this point in the history
refactor: remove unnecessary `pass`
  • Loading branch information
MaxxRK authored Jan 31, 2025
2 parents 3d32db6 + c53d392 commit ee025c3
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions firstrade/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
class QuoteError(Exception):
"""Base class for exceptions in the Quote module."""

pass


class QuoteRequestError(QuoteError):
"""Exception raised for errors in the HTTP request during a Quote."""
Expand All @@ -25,8 +23,6 @@ def __init__(self, symbol, error_message):
class LoginError(Exception):
"""Exception raised for errors in the login process."""

pass


class LoginRequestError(LoginError):
"""Exception raised for errors in the HTTP request during login."""
Expand All @@ -50,8 +46,6 @@ def __init__(self, error_message):
class AccountError(Exception):
"""Base class for exceptions in the Account module."""

pass


class AccountResponseError(AccountError):
"""Exception raised for errors in the API response when getting account data."""
Expand Down

0 comments on commit ee025c3

Please sign in to comment.