Skip to content

Commit bbd985a

Browse files
committed
follow-up prev: fix pycodestyle
1 parent 4e66804 commit bbd985a

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

electrumx/server/mempool.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,14 @@ class MemPool:
107107
hashXs: hashX -> set of all hashes of txs touching the hashX
108108
'''
109109

110-
def __init__(self, coin: Type['Coin'], api: MemPoolAPI, *, refresh_secs=5.0, log_status_secs=60.0):
110+
def __init__(
111+
self,
112+
coin: Type['Coin'],
113+
api: MemPoolAPI,
114+
*,
115+
refresh_secs=5.0,
116+
log_status_secs=60.0,
117+
):
111118
assert isinstance(api, MemPoolAPI)
112119
self.coin = coin
113120
self.api = api

0 commit comments

Comments
 (0)