Skip to content

Commit e84028d

Browse files
committed
Fix
1 parent 023ad18 commit e84028d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Diff for: data_structures/linked_list/doubly_linked_list_two.py

+1
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,7 @@ def create_linked_list() -> None:
239239
>>> linked_list = LinkedList()
240240
>>> linked_list.insert_at_position(position=1, value=10)
241241
>>> linked_list
242+
LinkedList(head=Node(data=10, previous=None, next=None), tail=Node(data=10, previous=None, next=None))
242243
"""
243244

244245

0 commit comments

Comments
 (0)