Skip to content

Commit de9f587

Browse files
Added DoublyLL operations
1 parent 96365ff commit de9f587

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Linked List/doublyLL.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def removeFirst(self):
105105
Returns the removed element.
106106
'''
107107
if self.isempty():
108-
print("List is already empty")
108+
print('List is already empty')
109109
return
110110
e = self._head._element
111111
self._head = self._head._link

0 commit comments

Comments
 (0)