Disable Pylint Failure for imghdr deprecation for now

This commit is contained in:
Margaret Fero 2024-03-02 15:59:17 -08:00
parent 570017d3b0
commit 39da471f79

View file

@ -3,7 +3,9 @@ from __future__ import annotations
from abc import ABC, abstractmethod
from typing import Optional, TypedDict, Any, Callable, Union, Iterator
from urllib.parse import quote_plus
import imghdr
# pylint: disable-next=deprecated-module
import imghdr # Deprecated in 3.11 for removal in 3.13; no good alternative yet
import logging
import re
import asyncio