Skip to content

Commit

Permalink
Fix failing formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
musale committed Nov 18, 2024
1 parent 765dbfe commit 0289e2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/msgraph_core/requests/batch_request_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ async def _post_batch_collection(
raise ValueError("batch_request_content_collection cannot be Null.")

batch_responses = BatchResponseContentCollection()

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:
response = await self.post(batch_request_content, error_map)
batch_responses.add_response(response)

Expand Down

0 comments on commit 0289e2f

Please sign in to comment.