Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,17 @@ def read(*parts):
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
],
description="Asynchronous Python client for the Quby ToonAPI.",
include_package_data=True,
install_requires=["aiohttp>=3.0.0", "backoff>=1.9.0", "yarl"],
python_requires=">=3.11",
keywords=[
"toon",
"quby",
Expand Down
3 changes: 1 addition & 2 deletions toonapi/toon.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from typing import Any, Awaitable, Callable

import aiohttp
import async_timeout
import backoff
from yarl import URL

Expand Down Expand Up @@ -109,7 +108,7 @@ async def _request(
self._close_session = True

try:
with async_timeout.timeout(self.request_timeout):
async with asyncio.timeout(self.request_timeout):
response = await self._session.request(
method,
url,
Expand Down