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

Commit

Permalink
Fix over-indentation in exceptions.py
Browse files Browse the repository at this point in the history
Signed-off-by: Toby Harradine <tobyharradine@gmail.com>
  • Loading branch information
Tobotimus committed Feb 9, 2019
1 parent 10506b3 commit 6dd5011
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiohttp_json_rpc/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(self, *args, msg_id=None, data=None, error_code=None,

if(error_code is not None and
error_code not in self.lookup_table.keys()):
raise ValueError('error code out of range')
raise ValueError('error code out of range')

self.data = data
self.msg_id = msg_id
Expand Down

0 comments on commit 6dd5011

Please sign in to comment.