diff --git a/python/Round.py b/python/Round.py index 660b201..50d7903 100644 --- a/python/Round.py +++ b/python/Round.py @@ -19,6 +19,8 @@ class Round: if duration <= dt.timedelta(0): raise ValueError("Duration cannot be zero") + if duration <= dt.timedelta(seconds=120): + raise ValueError("Games was too short") self.winners = winnerTeam self.losers = loserTeam