Skip to content

Commit 41ff5c8

Browse files
committed
Use more keyword arguments in docs
1 parent ea2a589 commit 41ff5c8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ This requires Python |minimum-python-version|\+.
3232
database = VuforiaDatabase()
3333
mock.add_database(database=database)
3434
# This will use the Vuforia mock.
35-
requests.get("https://vws.vuforia.com/summary", timeout=30)
35+
requests.get(url="https://vws.vuforia.com/summary", timeout=30)
3636
3737
By default, an exception will be raised if any requests to unmocked addresses are made.
3838

docs/source/basic-example.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Using the mock redirects requests to Vuforia made with `requests`_ to an in-memo
1313
database = VuforiaDatabase()
1414
mock.add_database(database=database)
1515
# This will use the Vuforia mock.
16-
requests.get("https://vws.vuforia.com/summary", timeout=30)
16+
requests.get(url="https://vws.vuforia.com/summary", timeout=30)
1717
1818
By default, an exception will be raised if any requests to unmocked addresses are made.
1919

0 commit comments

Comments
 (0)