diff --git a/main.py b/main.py index 224a4b7..0e873e9 100755 --- a/main.py +++ b/main.py @@ -84,7 +84,7 @@ class Match: return False def __repr__(self): - return f"{self.team1:3} - {self.time} - {self.team2}" + return f"{self.team1:3} - {self.time} - {self.team2} | VODs: {len(self.vods)}" def fetch_matches(): diff --git a/start.sh b/start.sh index c599bc7..5e73ce6 100755 --- a/start.sh +++ b/start.sh @@ -1,2 +1,2 @@ #!/usr/bin/bash -$($(which poetry) env info --path)/bin/poetry run python main.py +poetry run python main.py