Skip to content

Commit

Permalink
fix pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
rlehfeld committed Aug 10, 2024
1 parent 486a55a commit 2478cb2
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:
def Argument(*args):
def Argument(*args): # pylint: disable=invalid-name
"""legacy argument function before RF 7.0.1"""
return tuple(args)
from robot.result import Keyword as KeywordResult
from robot.output.logger import LOGGER
Expand Down

0 comments on commit 2478cb2

Please sign in to comment.