all: Update Python formatting to latest Black version 22.1.0.

Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Damien George
2022-02-02 16:11:25 +11:00
parent 326b2c79df
commit ab2923dfa1
16 changed files with 83 additions and 83 deletions

View File

@@ -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)