Skip to content

Commit 599e521

Browse files
fixed missing parameter description
1 parent fc5c39e commit 599e521

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

meraki/aio/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ class AsyncDashboardAPI:
101101
- log_file_prefix (string): log file name appended with date and timestamp
102102
- print_console (boolean): print logging output to console?
103103
- simulate (boolean): simulate POST/PUT/DELETE calls to prevent changes?
104+
- maximum_concurrent_requests (integer): How many requests should be handled at the same time? Additional requests will be queued
104105
"""
105106

106107
def __init__(self, api_key=None, base_url=DEFAULT_BASE_URL, single_request_timeout=SINGLE_REQUEST_TIMEOUT,

meraki/convert_to_aio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def compile_regex():
7575

7676
patternInitFile[re.compile("(, SIMULATE_API_CALLS)")] = r"\1, AIO_MAXIMUM_CONCURRENT_REQUESTS"
7777
patternInitFile[re.compile("(, simulate=SIMULATE_API_CALLS)")] = ("\\1,\n"+" "*17)+"maximum_concurrent_requests=AIO_MAXIMUM_CONCURRENT_REQUESTS"
78-
patternInitFile[re.compile("( - simulate (boolean): .*)")] = "\\1\n - maximum_concurrent_requests (integer): How many requests should be handled at the same time? Additional requests will be queued"
78+
patternInitFile[re.compile("( - simulate \(boolean\): .*)")] = "\\1\n - maximum_concurrent_requests (integer): How many requests should be handled at the same time? Additional requests will be queued"
7979
patternInitFile[re.compile("( {12}simulate=simulate,)")] = ("\\1\n"+" "*12)+"maximum_concurrent_requests=maximum_concurrent_requests"
8080

8181
patternInitFile[

0 commit comments

Comments
 (0)