We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcef9c7 commit f0396fbCopy full SHA for f0396fb
BrowserHistory/backend.py
@@ -2,7 +2,8 @@ class DLL:
2
"""
3
a doubly linked list that holds the current page,
4
next page, and previous page.
5
- Used to enforce order in operations
+ Used to enforce order in operations.
6
+ This is a change to the file
7
8
def __init__(self, val: str =None):
9
self.val = val
@@ -78,4 +79,4 @@ def forward(self, steps: int) -> str:
78
79
param_3 = obj.forward(1)
80
81
print(param_2)
- print(param_3)
82
+ print(param_3)
0 commit comments