diff --git a/src/config.py b/src/config.py index a1886b5..e4219fb 100644 --- a/src/config.py +++ b/src/config.py @@ -1,4 +1,5 @@ import random +from datetime import datetime vfyd_tags = [ "vfyd accounting", @@ -21,7 +22,6 @@ vfyd_tags = [ ] team = [ - "nle", "abz", "hael", "roen", @@ -33,4 +33,10 @@ team = [ "sben", ] +is_friday = datetime.now().weekday() == 4 + +if not is_friday: + team.append("nle") + + random.shuffle(team)