Syntax Error in code for some reason

This is my code:

async with aiohttp.ClientSession(headers=auth) as session:
          async with                                   
  lol3 = [{"userId": seller_id, "userAssetId": user_asset_id, "expectedPrice": price}]
session.post("https://example.com", json=lol3) as response:

Photo:


This is the error:

File "main.py", line 79
    async with                                   
                                                 ^
SyntaxError: invalid syntax
 

Please help tell me what do I need to fix because ive tried.

please send the code link

If you’ve copied this code: ensure that you’ve learnt python from the basics first.
We don’t know what you’re trying to do, but if there was meant to be code after the second async with, see if you can find it in “History” (click the button at the bottom right of your file in the editor).
Otherwise, I think you want to just remove that line?