e
This commit is contained in:
parent
00000d928b
commit
00000d9ecd
4 changed files with 6 additions and 6 deletions
|
|
@ -135,7 +135,7 @@ class Leagues:
|
|||
|
||||
return any(t in self.teams(league) for t in (t1.strip(), t2.strip()))
|
||||
|
||||
return event.lower() == "nfl redzone" if league == "NFL" else False
|
||||
return event.lower() in ["nfl redzone", "college gameday"]
|
||||
|
||||
def get_tvg_info(
|
||||
self,
|
||||
|
|
@ -144,7 +144,7 @@ class Leagues:
|
|||
) -> tuple[str | None, str]:
|
||||
|
||||
match sport:
|
||||
case "American Football":
|
||||
case "American Football" | "NFL":
|
||||
return (
|
||||
self.info("NFL")
|
||||
if self.is_valid(event, "NFL")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue