Skip to content

Commit 5e450f9

Browse files
Update
1 parent f925219 commit 5e450f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Chapter04/doubly_linked_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class Node(object):
1+
class Node:
22
def __init__ (self, data = None, next = None, prev = None):
33
self.data = data
44
self.next = next

0 commit comments

Comments
 (0)