Skip to content

Commit 8d6258c

Browse files
clearing the file
1 parent 9135980 commit 8d6258c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sprint-2/implement_linked_list/linked_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def pop_tail(self):
3232
raise IndexError("pop_tail from empty linked list")
3333

3434
value = self.tail.value
35-
self.remove(self.tail) # Delegate actual removal to remove()
35+
self.remove(self.tail)
3636
return value
3737

3838
def remove(self, node: Node):

0 commit comments

Comments
 (0)