Skip to content

Commit 2ac2c9c

Browse files
Update doubly_linked_list_two.py
1 parent 11ae98e commit 2ac2c9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/linked_list/doubly_linked_list_two.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ def create_linked_list() -> None:
243243
''
244244
>>> linked_list.insert_at_position(position=1, value=10)
245245
>>> linked_list
246-
LinkedList(head=Node(data=10, previous=None, next=None), tail=Node(data=10, previous=None, next=None))
246+
LinkedList(head=Node(data=10, previous=None, next=None), tail=Node(data=10, previous=None, next=None)) # noqa: E501
247247
>>> str(linked_list)
248248
'10'
249249
>>> linked_list.insert_at_position(position=2, value=20)

0 commit comments

Comments
 (0)