This commit is contained in:
Hubert Van De Walle
2026-03-04 16:02:33 +01:00
parent 920c746444
commit 1d46d78c35
+7 -1
View File
@@ -1,4 +1,5 @@
import random import random
from datetime import datetime
vfyd_tags = [ vfyd_tags = [
"vfyd accounting", "vfyd accounting",
@@ -21,7 +22,6 @@ vfyd_tags = [
] ]
team = [ team = [
"nle",
"abz", "abz",
"hael", "hael",
"roen", "roen",
@@ -33,4 +33,10 @@ team = [
"sben", "sben",
] ]
is_friday = datetime.now().weekday() == 4
if not is_friday:
team.append("nle")
random.shuffle(team) random.shuffle(team)