style: format code with black

Format code with black

This commit fixes the style issues introduced in f0f3d3b according to the output
from Black.

Details: None
This commit is contained in:
deepsource-autofix[bot] 2023-09-09 11:28:35 +00:00 committed by GitHub
parent f0f3d3b1d3
commit dd8f0725e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 10 deletions

View file

@ -27,7 +27,9 @@ class Animals(commands.Cog):
return
async with ctx.typing():
request = requests.get("https://api.tinyfox.dev/img?animal=" + animal_choice)
request = requests.get(
"https://api.tinyfox.dev/img?animal=" + animal_choice
)
with BytesIO(request.content) as response:
response.seek(0)