We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc74f71 commit f0f6844Copy full SHA for f0f6844
synapseclient/api/api_client.py
@@ -8,11 +8,11 @@
8
9
async def rest_post_paginated_async(
10
uri: str,
11
- body: Dict[str, Any] = None,
12
- endpoint: str = None,
13
- headers: httpx.Headers = None,
14
- retry_policy: Dict[str, Any] = {},
15
- requests_session_async_synapse: httpx.AsyncClient = None,
+ body: Optional[Dict[str, Any]] = None,
+ endpoint: Optional[str] = None,
+ headers: Optional[httpx.Headers] = None,
+ retry_policy: Optional[Dict[str, Any]] = {},
+ requests_session_async_synapse: Optional[httpx.AsyncClient] = None,
16
*,
17
synapse_client: Optional["Synapse"] = None,
18
**kwargs,
0 commit comments