From a4440b4ea8d8b8b859fbff0d6628ec34dbef970c Mon Sep 17 00:00:00 2001
From: Albert Zeyer <albzey@gmail.com>
Date: Thu, 28 Nov 2024 10:42:29 +0100
Subject: [PATCH] cleanup redundant create_aliases call

When --run is used, it will anyway still call create_aliases later,
just in the same way as without the --run option.
---
 sisyphus/manager.py | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/sisyphus/manager.py b/sisyphus/manager.py
index cfb2eca..e362052 100644
--- a/sisyphus/manager.py
+++ b/sisyphus/manager.py
@@ -92,9 +92,6 @@ def manager(args):
     manager = None
 
     try:
-        if args.run:
-            create_aliases(sis_graph.jobs())
-
         # The actual work loop
         if args.http_port is not None:
             logging.debug("Start http server")