Fix forgotten dict element in football

This commit is contained in:
Stijn De Clercq 2021-01-27 21:53:56 +01:00
parent 2bfd507bce
commit 9df8126455

View file

@ -55,7 +55,7 @@ class Match:
if status.lower() == "live": if status.lower() == "live":
# Half time # Half time
if Navigation.LiveMatchPhase.value in self.matchDict and \ if Navigation.LiveMatchPhase.value in self.matchDict and \
Navigation.LiveMatchPhase.value == Navigation.HalfTime.value: self.matchDict[Navigation.LiveMatchPhase.value] == Navigation.HalfTime.value:
return Status.HalfTime.value return Status.HalfTime.value
# Current time # Current time