Files
micropython/tests/import/pkgstar_all_miss/__init__.py
Damien George 7729e80fdd all: Go back to using default ruff quote style.
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>
2025-07-24 12:48:18 +10:00

9 lines
140 B
Python

__all__ = ("existingFun", "missingFun")
def existingFun():
return None
# missingFun is not defined, should raise an error on import