File _utils.py#
File List > build > lib.linux-armv7l-cpython-311 > pypisoundmicro > _utils.py
Go to the documentation of this file
def copy_doc(from_func):
def decorator(to_func):
to_func.__doc__ = from_func.__doc__
return to_func
return decorator