diff options
author | Jim Mussared <jim.mussared@gmail.com> | 2023-02-02 11:51:48 +1100 |
---|---|---|
committer | Jim Mussared <jim.mussared@gmail.com> | 2023-02-02 12:51:03 +1100 |
commit | 8b2748269244304854b3462cb8902952b4dcb892 (patch) | |
tree | 05c315fc329eb32bb55c71303eef2183bf818e35 /examples/asmsum.py | |
parent | fe2a8332ff9c7cc7b66ed6da04f5a4a825309818 (diff) | |
download | micropython-8b2748269244304854b3462cb8902952b4dcb892.tar.gz micropython-8b2748269244304854b3462cb8902952b4dcb892.zip |
top: Update Python formatting to black "2023 stable style".
See https://black.readthedocs.io/en/stable/the_black_code_style/index.html
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
Diffstat (limited to 'examples/asmsum.py')
-rw-r--r-- | examples/asmsum.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/examples/asmsum.py b/examples/asmsum.py index f465b25afd..f2c7f285ba 100644 --- a/examples/asmsum.py +++ b/examples/asmsum.py @@ -1,6 +1,5 @@ @micropython.asm_thumb def asm_sum_words(r0, r1): - # r0 = len # r1 = ptr # r2 = sum @@ -25,7 +24,6 @@ def asm_sum_words(r0, r1): @micropython.asm_thumb def asm_sum_bytes(r0, r1): - # r0 = len # r1 = ptr # r2 = sum |