Skip to content

Commit 1a88b92

Browse files
Fixes for flake8 validation
1 parent a8dd253 commit 1a88b92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

connect/models/exception.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ def __init__(self, *args, **kwargs):
4949

5050
class ServerErrorException(Exception):
5151
message = 'Server error' # type: str
52-
52+
5353
def __init__(self, error=None, *args, **kwargs):
5454
# type: (ServerError, *any, **any) -> None
55-
55+
5656
if error and isinstance(error, ServerError):
5757
self.message = str({
5858
"error_code": error.error_code,

0 commit comments

Comments
 (0)