Skip to content

Commit f0396fb

Browse files
authored
Update backend.py
1 parent dcef9c7 commit f0396fb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

BrowserHistory/backend.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ class DLL:
22
"""
33
a doubly linked list that holds the current page,
44
next page, and previous page.
5-
Used to enforce order in operations
5+
Used to enforce order in operations.
6+
This is a change to the file
67
"""
78
def __init__(self, val: str =None):
89
self.val = val
@@ -78,4 +79,4 @@ def forward(self, steps: int) -> str:
7879
param_3 = obj.forward(1)
7980

8081
print(param_2)
81-
print(param_3)
82+
print(param_3)

0 commit comments

Comments
 (0)