2017-02-06 23:55:37 -05:00
|
|
|
"""
|
2017-07-09 06:36:28 -04:00
|
|
|
categories: Core,Functions
|
2017-05-01 20:36:17 -04:00
|
|
|
description: Error messages for methods may display unexpected argument counts
|
|
|
|
cause: MicroPython counts "self" as an argument.
|
|
|
|
workaround: Interpret error messages with the information above in mind.
|
2017-02-06 23:55:37 -05:00
|
|
|
"""
|
|
|
|
try:
|
|
|
|
[].append()
|
|
|
|
except Exception as e:
|
|
|
|
print(e)
|