We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a57093b commit 3674f70Copy full SHA for 3674f70
sphinx_autodoc_vyper/parser.py
@@ -11,7 +11,7 @@
11
12
valid_ints = {f"int{8 * (i+1)}" for i in range(32)}
13
valid_uints = {f"uint{8 * (i+1)}" for i in range(32)}
14
-VALID_VYPER_TYPES = {*valid_ints, *valid_uints, "address", "bool", "bytes32", "string"}
+VALID_VYPER_TYPES = {*valid_ints, *valid_uints, "address", "bool", "Bytes", "String"}
15
16
17
@dataclass
0 commit comments