summaryrefslogtreecommitdiffstatshomepage
path: root/tests/float/int_divzero.py
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2022-02-02 16:11:25 +1100
committerDamien George <damien@micropython.org>2022-02-02 16:49:55 +1100
commitab2923dfa1174dc177f0a90cb00a7e4ff87958d2 (patch)
tree48566c83ba1b6658382c429d39b9f2c8bcc42af2 /tests/float/int_divzero.py
parent326b2c79dfaf472d67e5e3fee5868e78ccc6be73 (diff)
downloadmicropython-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/int_divzero.py')
-rw-r--r--tests/float/int_divzero.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/float/int_divzero.py b/tests/float/int_divzero.py
index b311a1dbcf..ef3531bee8 100644
--- a/tests/float/int_divzero.py
+++ b/tests/float/int_divzero.py
@@ -4,6 +4,6 @@ except ZeroDivisionError:
print("ZeroDivisionError")
try:
- 0 ** -1
+ 0**-1
except ZeroDivisionError:
print("ZeroDivisionError")