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