Skip to content

Commit 866fd28

Browse files
committed
Merge #17030: test: Fix Python Docstring to include all Args.
8acd589 Fix Python Docstring to include all Args. (John Bampton) Pull request description: Found a Python function that had incorrect and missing arguments in its Docstring. ACKs for top commit: laanwj: ACK 8acd589 Tree-SHA512: 936f275f29a700d630bb479b5283e47b66f2df76d8b8c053f594e6aedf783cc98a29c924c3a46613f112dfc884acb50f21a0b18f96d939e887b12b921ef2e10f
2 parents febc31c + 8acd589 commit 866fd28

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)