aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_framework/util.py
diff options
context:
space:
mode:
authorJohn Bampton <jbampton@users.noreply.github.com>2019-10-03 06:37:59 +1000
committerJohn Bampton <jbampton@users.noreply.github.com>2019-10-06 10:37:50 +1000
commit8acd58927a614e006641384f61f8e7fca1cc68fc (patch)
tree8fa4b99e74aadb0674f7a8d9f4aa55232dbd47f2 /test/functional/test_framework/util.py
parenta689c119076c7b8dc5b4dea4539e4cbf5adfb72f (diff)
downloadbitcoin-8acd58927a614e006641384f61f8e7fca1cc68fc.tar.xz
Fix Python Docstring to include all Args.
Diffstat (limited to 'test/functional/test_framework/util.py')
-rw-r--r--test/functional/test_framework/util.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/test_framework/util.py b/test/functional/test_framework/util.py
index 2bed8c3231..cde99a2219 100644
--- a/test/functional/test_framework/util.py
+++ b/test/functional/test_framework/util.py
@@ -244,7 +244,7 @@ class PortSeed:
# Must be initialized with a unique integer for each process
n = None
-def get_rpc_proxy(url, node_number, timeout=None, coveragedir=None):
+def get_rpc_proxy(url, node_number, *, timeout=None, coveragedir=None):
"""
Args:
url (str): URL of the RPC server to call
@@ -252,6 +252,7 @@ def get_rpc_proxy(url, node_number, timeout=None, coveragedir=None):
Kwargs:
timeout (int): HTTP timeout in seconds
+ coveragedir (str): Directory
Returns:
AuthServiceProxy. convenience object for making RPC calls.