From 9427f8e301881c418f77f7b77e22101a864cb545 Mon Sep 17 00:00:00 2001 From: Luc Didry Date: Wed, 28 Feb 2024 17:32:54 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20=E2=80=94=20Fix=20bad=20variable?= =?UTF-8?q?=20name?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- argos/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/argos/commands.py b/argos/commands.py index a5418c3..9c3ccd6 100644 --- a/argos/commands.py +++ b/argos/commands.py @@ -71,7 +71,7 @@ def agent(server_url, auth, max_tasks, wait_time, log_level): from argos.logging import logger logger.setLevel(log_level) - agent_ = ArgosAgent(server_url, auth, max_tasks, wait_time) + agent_ = ArgosAgent(server, auth, max_tasks, wait_time) asyncio.run(agent_.run())