From ea87e07a22e65bc3b541f2beaefd83e4477d20d1 Mon Sep 17 00:00:00 2001 From: Manan Date: Tue, 31 Dec 2024 18:09:35 +0530 Subject: [PATCH] Update __init__.py Removed redundant `Generic` import from `chess/__init__.py` --- chess/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chess/__init__.py b/chess/__init__.py index b01a2e47..8d0a6825 100644 --- a/chess/__init__.py +++ b/chess/__init__.py @@ -22,7 +22,7 @@ import itertools import typing -from typing import ClassVar, Callable, Counter, Dict, Generic, Hashable, Iterable, Iterator, List, Literal, Mapping, Optional, SupportsInt, Tuple, Type, TypeVar, Union +from typing import ClassVar, Callable, Counter, Dict, Hashable, Iterable, Iterator, List, Literal, Mapping, Optional, SupportsInt, Tuple, Type, TypeVar, Union if typing.TYPE_CHECKING: from typing_extensions import Self, TypeAlias