We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b234714 commit 4ce3cb8Copy full SHA for 4ce3cb8
decompiler/structures/pseudo/expressions.py
@@ -166,7 +166,7 @@ class Constant(Expression[DecompiledType]):
166
"""Represents a constant expression type."""
167
168
# 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']
+ ValueType = int | float | str | bytes | list["ValueType"] | dict[str, "ValueType"]
170
171
def __init__(
172
self,
0 commit comments