diff options
-rw-r--r-- | bot/utils/exceptions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/utils/exceptions.py b/bot/utils/exceptions.py index b4175695..bf0e5813 100644 --- a/bot/utils/exceptions.py +++ b/bot/utils/exceptions.py @@ -8,7 +8,7 @@ class UserNotPlayingError(Exception): class APIError(Exception): - """Raised when an external API(eg. Wikipedia) returns an error response.""" + """Raised when an external API (eg. Wikipedia) returns an error response.""" def __init__(self, api: str, status_code: int, error_msg: Optional[str] = None): super().__init__() |