Skip to content

Commit

Permalink
replace BaseException with Exception
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenghaoz committed Oct 14, 2022
1 parent b09bab9 commit 0aa63f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gorse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import requests


class GorseException(BaseException):
class GorseException(Exception):
def __init__(self, status_code: int, message: str):
self.status_code = status_code
self.message = message
Expand Down

0 comments on commit 0aa63f5

Please sign in to comment.