From 6dd50114fb4a84cac9c749d338ce2e09b3b6a865 Mon Sep 17 00:00:00 2001 From: Toby Harradine Date: Sat, 9 Feb 2019 12:56:06 +1100 Subject: [PATCH] Fix over-indentation in exceptions.py Signed-off-by: Toby Harradine --- aiohttp_json_rpc/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiohttp_json_rpc/exceptions.py b/aiohttp_json_rpc/exceptions.py index 79b82b0..eb44673 100644 --- a/aiohttp_json_rpc/exceptions.py +++ b/aiohttp_json_rpc/exceptions.py @@ -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