Skip to content

Commit 4df1bbb

Browse files
committed
fix PEP8 too many blank lines
1 parent 98676f9 commit 4df1bbb

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

bitcoin/rpc.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,6 @@ def __init__(self,
192192
self.__conn = httplib.HTTPConnection(self.__url.hostname, port=port,
193193
timeout=timeout)
194194

195-
196195
def _call(self, service_name, *args):
197196
self.__id_count += 1
198197

@@ -215,7 +214,6 @@ def _call(self, service_name, *args):
215214
else:
216215
return response['result']
217216

218-
219217
def _batch(self, rpc_call_list):
220218
postdata = json.dumps(list(rpc_call_list))
221219
self.__conn.request('POST', self.__url.path, postdata,

0 commit comments

Comments
 (0)