1234567891011121314151617181920212223 |
- """
- Example Lib
- """
- class foo:
- """
- Example class.
- """
- ############################## Attributes ##############################
- ############################## Constructor ##############################
- def __init__(self):
- pass
- ############################## Methods ##############################
- def bar(self):
- """
- Example Method.
- """
- print("class foo, method bar")
|