Source code for pypackage_skeleton
"""The init file of the package."""
[docs]
__author__ = "Pierrick Rambaud"
[docs]
__email__ = "pierrick.rambaud49@gmail.com"
[docs]
class Hello:
"""Hello world class."""
"the message to print"
[docs]
def hello_world(self) -> str:
"""Hello world demo method.
Returns:
the hello world string
"""
return self.msg