We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c53ee9 commit 42a1f27Copy full SHA for 42a1f27
data_structures/linked_list/merge_sort_linked_list.py
@@ -15,7 +15,7 @@ class Node:
15
1 2 3 4
16
"""
17
18
- def __init__(self, data: int):
+ def __init__(self, data: int) -> None:
19
self.data = data
20
self.next: Node | None = None
21
0 commit comments