Update doubly_linked_list.py

This commit is contained in:
marina 2023-08-07 15:52:35 -07:00 committed by GitHub
parent 4a03488022
commit 93c18361f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,7 @@
# author: bt3gl
class Node():
class Node:
def __init__(self, data, previous=None):
self.data = data