robot_skills.util.decorators

Functions

deprecated(func_or_cls)

Print a deprecation warning once on first use of the function.

deprecated_replace_with(replacement)

Module Contents

robot_skills.util.decorators.deprecated(func_or_cls)[source]

Print a deprecation warning once on first use of the function.

>>> @deprecated                      
... def f():
...     pass
>>> f()                              
f is deprecated
robot_skills.util.decorators.deprecated_replace_with(replacement)[source]