Source code for sampleproject.libs.samplemodule

"""
samplemodule that performs sample operations.

Contains:
    - sampleclass
"""


[docs]class SampleClass: """Documentation of the SampleClass.""" def __init__(self): """Initiatlizes samples class.""" return
[docs] @staticmethod def true(): """Return True my friend.""" return True
[docs] @classmethod def false(cls): """ Docstrings should not start with Returns... Nonetheless, returns False """ return False