From 258b9f3e71a4c838883e5fc2b15a3c3d1f334ba2 Mon Sep 17 00:00:00 2001
From: George Marchment <georgemarchment@yahoo.fr>
Date: Thu, 7 Mar 2024 10:22:40 +0100
Subject: [PATCH] fix bug

---
 bioflow_insight_cli/main.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bioflow_insight_cli/main.py b/bioflow_insight_cli/main.py
index 1ce525f..7eb54ea 100644
--- a/bioflow_insight_cli/main.py
+++ b/bioflow_insight_cli/main.py
@@ -36,7 +36,7 @@ def cli(main_workflow_path, render_graphs: bool, **kwargs):
     in folders with eponymous names.
     """
 
-    w = Workflow(address=main_workflow_path, **kwargs)
+    w = Workflow(file=main_workflow_path, **kwargs)
     w.initialise()
     w.generate_all_graphs(render_graphs=render_graphs)
 
-- 
GitLab