fix: null reference when ending highest amount without any shares
This commit is contained in:
@@ -42,8 +42,10 @@ class HighestAmount(Scoring):
|
|||||||
return 0
|
return 0
|
||||||
|
|
||||||
def calculate_end_score(self) -> ItemShare | None:
|
def calculate_end_score(self) -> ItemShare | None:
|
||||||
|
if self.max:
|
||||||
self.max.score = 1
|
self.max.score = 1
|
||||||
return self.max
|
return self.max
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
class FirstThenHighest(Scoring):
|
class FirstThenHighest(Scoring):
|
||||||
|
|||||||
Reference in New Issue
Block a user