summaryrefslogtreecommitdiff
path: root/tests/float/int_power.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_power.py
parent326b2c79dfaf472d67e5e3fee5868e78ccc6be73 (diff)
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_power.py')
-rw-r--r--tests/float/int_power.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/float/int_power.py b/tests/float/int_power.py
index ba79247a5..bcda0f98e 100644
--- a/tests/float/int_power.py
+++ b/tests/float/int_power.py
@@ -1,7 +1,7 @@
# negative power should produce float
x = 2
-print(x ** -2)
+print(x**-2)
x = 3
x **= -2