Skip to content

Commit 6f3a03c

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent e7d1f11 commit 6f3a03c

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

mypyc/codegen/literals.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,16 @@
55
# Supported Python literal types. All tuple / frozenset / dict items must have supported
66
# literal types as well, but we can't represent the type precisely.
77
LiteralValue = (
8-
str | bytes | int | bool | float | complex | tuple[object, ...] | frozenset[object] | dict[object, object] | None
8+
str
9+
| bytes
10+
| int
11+
| bool
12+
| float
13+
| complex
14+
| tuple[object, ...]
15+
| frozenset[object]
16+
| dict[object, object]
17+
| None
918
)
1019

1120

0 commit comments

Comments
 (0)