diff options
author | Damien George <damien@micropython.org> | 2025-07-22 22:58:52 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2025-07-24 12:48:18 +1000 |
commit | 7729e80fdddbd9f75cb350de70a84ed26cb601fd (patch) | |
tree | ed5f7327b25021e88970b4b3582aa7d21befd350 /tests/extmod/json_loads.py | |
parent | 6a4306a0df1e936954bfeff65297d74b9b0954e2 (diff) |
all: Go back to using default ruff quote style.
Commit dc2fcfcc5511a371ff684f7d7772e7a7b479246d 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>
Diffstat (limited to 'tests/extmod/json_loads.py')
-rw-r--r-- | tests/extmod/json_loads.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/extmod/json_loads.py b/tests/extmod/json_loads.py index 095e67d74..092402d71 100644 --- a/tests/extmod/json_loads.py +++ b/tests/extmod/json_loads.py @@ -86,7 +86,7 @@ except ValueError: # incomplete array declaration try: - my_print(json.loads('[0,')) + my_print(json.loads("[0,")) except ValueError: print("ValueError") |