l2 Description for l2. l2 ¤ Documentation for l2.py. L2Mh ¤ Bases: object class L2Mh documentation run() ¤ Simple function Source code in mhlib/l2/l2.py 16 17 18def run(self) -> int: """Simple function""" return 10 slow() ¤ Example slow function. Source code in mhlib/l2/l2.py 20 21 22 23 24def slow(self) -> int: """Example slow function.""" t = 5 time.sleep(t) return t l2_test() ¤ L2 test function. Source code in mhlib/l2/l2.py 8 9 10def l2_test() -> str: """L2 test function.""" return 'ok2'