Suppress pylint error related to audioop deprecation (#91950)
Co-authored-by: Martin Hjelmare <marhje52@gmail.com> Co-authored-by: Franck Nijhof <git@frenck.dev>
This commit is contained in:
parent
5075281add
commit
a956f16f73
1 changed files with 3 additions and 1 deletions
|
@ -1,6 +1,8 @@
|
|||
"""Assist pipeline Websocket API."""
|
||||
import asyncio
|
||||
import audioop
|
||||
|
||||
# Suppressing disable=deprecated-module is needed for Python 3.11
|
||||
import audioop # pylint: disable=deprecated-module
|
||||
from collections.abc import AsyncGenerator, Callable
|
||||
import logging
|
||||
from typing import Any
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue