Skip to content

Commit 66019e6

Browse files
committed
Try to fix ruff
1 parent 49699af commit 66019e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: other/lfu_cache.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def __init__(self, key: T | None, val: U | None):
2525

2626
def __repr__(self) -> str:
2727
return f"Node: key: {self.key}, val: {self.val}, freq: {lf.freq}, "
28-
"has next: {self.next is not None}, has prev: {self.prev is not None}"
28+
"has next: {self.next is not None}, has prev: {self.prev is not None}"
2929

3030

3131
class DoubleLinkedList(Generic[T, U]):

0 commit comments

Comments
 (0)