Source code for example_pkg_opi.module

# -*- coding: utf-8 -*-

"""
example_pkg_opi/module.py.

:license: GPLv3 --- Copyright (C) 2019, 2020 Olivier Pirson
:author: Olivier Pirson --- http://www.opimedia.be/
:version: April 20, 2020
"""


[docs]def example(text: str) -> str: """ Return a message containing ``text``. Simple example function. :param text: """ return 'Example: {}'.format(text)