Skip to content

Commit 1e2bbeb

Browse files
github-actionsgithub-actions
github-actions
authored and
github-actions
committed
fixup! Format Python code with psf/black push
1 parent a2f542e commit 1e2bbeb

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

data_structures/linked_list/doubly_linked_list.py

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ class LinkedList: # making main class named linked list
2222
>>> linked_list.isEmpty()
2323
False
2424
"""
25+
2526
def __init__(self):
2627
self.head = None
2728
self.tail = None

0 commit comments

Comments
 (0)