Skip to content

Commit 2b7f1a4

Browse files
💣 exceptions now inherits from Exception instead BaseException
1 parent bd16ac3 commit 2b7f1a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

squarecloud/errors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from .file import File
22

33

4-
class SquareException(BaseException):
4+
class SquareException(Exception):
55
"""abstract class SquareException"""
66

77
def __init__(self, message: str = 'An unexpected error occurred'):

0 commit comments

Comments
 (0)