🩹 — Fix bad variable name

This commit is contained in:
Luc Didry 2024-02-28 17:32:54 +01:00
parent 9ff2814789
commit 9427f8e301
No known key found for this signature in database
GPG key ID: EA868E12D0257E3C

View file

@ -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())