Skip to content

Commit 8b2ef93

Browse files
committed
Fix unused typing import
1 parent 79764c1 commit 8b2ef93

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

data_structures/binary_tree/non_recursive_segment_tree.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
from __future__ import annotations
4040

4141
from collections.abc import Callable
42-
from typing import Any, TypeVar, cast
42+
from typing import TypeVar, cast
4343

4444
T = TypeVar("T")
4545

0 commit comments

Comments
 (0)