diff options
author | Damien George <damien@micropython.org> | 2022-02-02 16:11:25 +1100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2022-02-02 16:49:55 +1100 |
commit | ab2923dfa1174dc177f0a90cb00a7e4ff87958d2 (patch) | |
tree | 48566c83ba1b6658382c429d39b9f2c8bcc42af2 /tests/float/inf_nan_arith.py | |
parent | 326b2c79dfaf472d67e5e3fee5868e78ccc6be73 (diff) | |
download | micropython-ab2923dfa1174dc177f0a90cb00a7e4ff87958d2.tar.gz micropython-ab2923dfa1174dc177f0a90cb00a7e4ff87958d2.zip |
all: Update Python formatting to latest Black version 22.1.0.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/float/inf_nan_arith.py')
-rw-r--r-- | tests/float/inf_nan_arith.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/float/inf_nan_arith.py b/tests/float/inf_nan_arith.py index c27e38bc52..d1a6b18872 100644 --- a/tests/float/inf_nan_arith.py +++ b/tests/float/inf_nan_arith.py @@ -14,7 +14,7 @@ for x in values: except ZeroDivisionError: print(" / ZeroDivisionError") try: - print(" ** pow", x ** y, pow(x, y)) + print(" ** pow", x**y, pow(x, y)) except ZeroDivisionError: print(" ** pow ZeroDivisionError") print(" == != < <= > >=", x == y, x != y, x < y, x <= y, x > y, x >= y) |