1""" 2categories: Core,Functions 3description: Error messages for methods may display unexpected argument counts 4cause: MicroPython counts "self" as an argument. 5workaround: Interpret error messages with the information above in mind. 6""" 7try: 8 [].append() 9except Exception as e: 10 print(e) 11