Skip to content

Commit

Permalink
mypy ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
callebtc committed Jan 21, 2025
1 parent 9ebbb1b commit 6890dbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cashu/mint/middleware.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ async def dispatch(self, request: Request, call_next):
return response

response_body = b""
async for chunk in response.body_iterator:
async for chunk in response.body_iterator: # type: ignore
response_body += chunk

accept_encoding = request.headers.get("Accept-Encoding", "")
Expand Down

0 comments on commit 6890dbf

Please sign in to comment.