Skip to content

Commit 73c4885

Browse files
Fix LabelboxError.__str__
1 parent 4fbae4d commit 73c4885

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

labelbox/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def __init__(self, message, cause=None):
1212
self.cause = cause
1313

1414
def __str__(self):
15-
return self._message + str(self.args)
15+
return self.message + str(self.args)
1616

1717

1818
class AuthenticationError(LabelboxError):

0 commit comments

Comments
 (0)