Skip to content

Commit 4ce3cb8

Browse files
rihiNeoQuix
authored andcommitted
Black
1 parent b234714 commit 4ce3cb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

decompiler/structures/pseudo/expressions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ class Constant(Expression[DecompiledType]):
166166
"""Represents a constant expression type."""
167167

168168
# python 3.12 allows writing: type ValueType = int | float | str | bytes | dict[str, ValueType]
169-
ValueType = int | float | str | bytes | list['ValueType'] | dict[str, 'ValueType']
169+
ValueType = int | float | str | bytes | list["ValueType"] | dict[str, "ValueType"]
170170

171171
def __init__(
172172
self,

0 commit comments

Comments
 (0)