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
4 changes: 1 addition & 3 deletions aioslimproto/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from __future__ import annotations

import asyncio
from asyncio import StreamReader, StreamWriter, create_task
from asyncio import StreamReader, StreamWriter, create_task, timeout
from collections.abc import Callable
from datetime import datetime
import ipaddress
Expand All @@ -19,8 +19,6 @@
from typing import Any
from urllib.parse import parse_qsl, urlparse

from async_timeout import timeout

from .const import (
FALLBACK_CODECS,
FALLBACK_MODEL,
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ classifiers = [
]
dependencies = [
"aiohttp>=3.9.2",
"async-timeout",
"pillow",
]
description = "Python module to talk to Logitech Squeezebox players directly (without Logitech server)."
Expand Down