Skip to content
This repository was archived by the owner on Oct 1, 2021. It is now read-only.

Commit 6dd5011

Browse files
committed
Fix over-indentation in exceptions.py
Signed-off-by: Toby Harradine <tobyharradine@gmail.com>
1 parent 10506b3 commit 6dd5011

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aiohttp_json_rpc/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def __init__(self, *args, msg_id=None, data=None, error_code=None,
2121

2222
if(error_code is not None and
2323
error_code not in self.lookup_table.keys()):
24-
raise ValueError('error code out of range')
24+
raise ValueError('error code out of range')
2525

2626
self.data = data
2727
self.msg_id = msg_id

0 commit comments

Comments
 (0)