Skip to content

Commit

Permalink
fix legacy implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
rlehfeld committed Aug 10, 2024
1 parent f014f74 commit 486a55a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion AsyncLibrary/robot_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 486a55a

Please sign in to comment.