Skip to content

Commit

Permalink
style: format with black
Browse files Browse the repository at this point in the history
  • Loading branch information
IMperiumX committed May 17, 2023
1 parent cf22220 commit 72f022d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Add_two_Linked_List.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ def add_two_no(self, first, second):
if carry > 0:
temp.next = Node(carry)


def __str__(self):
temp = self.head
while temp:
Expand Down

0 comments on commit 72f022d

Please sign in to comment.