From 0e0d3773ab44c310511cee76edfa81db2b76b1a1 Mon Sep 17 00:00:00 2001 From: Kaaninchen <124433727+kaaninchen@users.noreply.github.com> Date: Mon, 20 Jul 2026 14:37:21 +0200 Subject: [PATCH] Fix: random connection bool --- src/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.py b/src/utils.py index 21531a5..f691c17 100644 --- a/src/utils.py +++ b/src/utils.py @@ -55,7 +55,7 @@ def random_connection(): if not departures: continue - if config['random'] is False: + if not config['random']: dep = random.choice(departures) else: dep = departures[0]