2017-02-07 04:55:37 +00:00
|
|
|
"""
|
2017-07-09 11:36:28 +01:00
|
|
|
categories: Core,Functions
|
2017-05-02 01:36:17 +01: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-07 04:55:37 +00:00
|
|
|
"""
|
|
|
|
try:
|
|
|
|
[].append()
|
|
|
|
except Exception as e:
|
|
|
|
print(e)
|