Robot Framework SSH Library
deco.py
Go to the documentation of this file.
1 
2 
32 def keyword(types=()):
33 
34  def decorator(func):
35  func.robot_types = types
36  return func
37  return decorator
def keyword(types=())
Decorator to set custom argument types to keywords.
Definition: deco.py:32