We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c80327 commit a81fa7bCopy full SHA for a81fa7b
greedy_methods/fractional_cover_problem.py
@@ -8,7 +8,7 @@ class Item:
8
weight: int
9
value: int
10
11
- def __eq__(self, other: 'Item') -> bool:
+ def __eq__(self, other: "Item") -> bool:
12
return self.weight == other.weight and self.value == other.value
13
14
0 commit comments