remove unneeded Iterable base class from CookieJar (#12812)

This commit is contained in:
Stephen Morton
2024-10-15 10:47:56 -07:00
committed by GitHub
parent a871efd90c
commit f08d769f7c
2 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
import sys
from _typeshed import StrPath
from collections.abc import Iterable, Iterator, Sequence
from collections.abc import Iterator, Sequence
from http.client import HTTPResponse
from re import Pattern
from typing import ClassVar, TypeVar, overload
@@ -21,7 +21,7 @@ _T = TypeVar("_T")
class LoadError(OSError): ...
class CookieJar(Iterable[Cookie]):
class CookieJar:
non_word_re: ClassVar[Pattern[str]] # undocumented
quote_re: ClassVar[Pattern[str]] # undocumented
strict_domain_re: ClassVar[Pattern[str]] # undocumented