From 486a55abc176f912dafd4358cea0b10758582f52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Lehfeld?= <54720674+rlehfeld@users.noreply.github.com> Date: Sat, 10 Aug 2024 11:30:06 +0200 Subject: [PATCH] fix legacy implementation --- AsyncLibrary/robot_async.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/AsyncLibrary/robot_async.py b/AsyncLibrary/robot_async.py index 8a40cae..47db463 100644 --- a/AsyncLibrary/robot_async.py +++ b/AsyncLibrary/robot_async.py @@ -22,7 +22,8 @@ try: from robot.running.model import Argument except ImportError: - Argument = tuple + def Argument(*args): + return tuple(args) from robot.result import Keyword as KeywordResult from robot.output.logger import LOGGER from .scoped_value import scope_parameter, _UNDEFINED