Skip to content

Commit eb62d41

Browse files
committed
tidy
1 parent 4f87057 commit eb62d41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lambdas/shared/src/common/service_return.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def __init__(
1616
self.exception = exception
1717
self.call_location = self._get_call_location()
1818

19-
if self.status != 200 and not (self.exception or self.message):
19+
if self.status != 200 and (self.exception or self.message):
2020
msg = {
2121
"status": self.status,
2222
"Message": self.message,

0 commit comments

Comments
 (0)