Skip to content

Commit 8acd589

Browse files
committed
Fix Python Docstring to include all Args.
1 parent a689c11 commit 8acd589

File tree

1 file changed

+2
-1
lines changed
  • test/functional/test_framework

1 file changed

+2
-1
lines changed

test/functional/test_framework/util.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,14 +244,15 @@ class PortSeed:
244244
# Must be initialized with a unique integer for each process
245245
n = None
246246

247-
def get_rpc_proxy(url, node_number, timeout=None, coveragedir=None):
247+
def get_rpc_proxy(url, node_number, *, timeout=None, coveragedir=None):
248248
"""
249249
Args:
250250
url (str): URL of the RPC server to call
251251
node_number (int): the node number (or id) that this calls to
252252
253253
Kwargs:
254254
timeout (int): HTTP timeout in seconds
255+
coveragedir (str): Directory
255256
256257
Returns:
257258
AuthServiceProxy. convenience object for making RPC calls.

0 commit comments

Comments
 (0)