We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 765dbfe commit 0289e2fCopy full SHA for 0289e2f
src/msgraph_core/requests/batch_request_builder.py
@@ -105,8 +105,8 @@ async def _post_batch_collection(
105
raise ValueError("batch_request_content_collection cannot be Null.")
106
107
batch_responses = BatchResponseContentCollection()
108
-
109
- for batch_request_content in batch_request_content_collection.get_batch_requests_for_execution():
+ batch_requests = batch_request_content_collection.get_batch_requests_for_execution()
+ for batch_request_content in batch_requests:
110
response = await self.post(batch_request_content, error_map)
111
batch_responses.add_response(response)
112
0 commit comments