mirror of
https://github.com/micropython/micropython.git
synced 2026-01-08 05:00:26 +01:00
Commit dc2fcfcc55 seems to have accidentally
changed the ruff quote style to "preserve", instead of keeping it at the
default which is "double".
Put it back to the default and update relevant .py files with this rule.
Signed-off-by: Damien George <damien@micropython.org>
9 lines
140 B
Python
9 lines
140 B
Python
__all__ = ("existingFun", "missingFun")
|
|
|
|
|
|
def existingFun():
|
|
return None
|
|
|
|
|
|
# missingFun is not defined, should raise an error on import
|