Browse Source

pytest: Fix lint error

json-streaming
Christian Decker 7 years ago
parent
commit
f505a9418b
  1. 3
      tests/utils.py

3
tests/utils.py

@ -233,7 +233,8 @@ class SimpleBitcoinProxy:
# Create a callable to do the actual call
proxy = BitcoinProxy(btc_conf_file=self.__btc_conf_file__)
f = lambda *args: proxy._call(name, *args)
def f(*args):
return proxy._call(name, *args)
# Make debuggers show <function bitcoin.rpc.name> rather than <function
# bitcoin.rpc.<lambda>>

Loading…
Cancel
Save