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 /extmod/uasyncio/event.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 'extmod/uasyncio/event.py')
-rw-r--r-- | extmod/uasyncio/event.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/extmod/uasyncio/event.py b/extmod/uasyncio/event.py index 1525bcf3a9..43d47eb5f0 100644 --- a/extmod/uasyncio/event.py +++ b/extmod/uasyncio/event.py @@ -3,6 +3,7 @@ from . import core + # Event class for primitive events that can be waited on, set, and cleared class Event: def __init__(self): |