Skip to content

Commit b24d204

Browse files
committed
Remove unused imports
1 parent 7b5a143 commit b24d204

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

data_structures/binary_tree/merge_two_binary_trees.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
"""
88
from __future__ import annotations
99

10-
from typing import Optional
11-
1210

1311
class Node:
1412
"""

data_structures/linked_list/skip_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from __future__ import annotations
66

77
from random import random
8-
from typing import Generic, Optional, TypeVar, Union
8+
from typing import Generic, TypeVar
99

1010
KT = TypeVar("KT")
1111
VT = TypeVar("VT")

0 commit comments

Comments
 (0)