Skip to content

Commit 3674f70

Browse files
committed
fix: add String and Bytes to valid types
1 parent a57093b commit 3674f70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sphinx_autodoc_vyper/parser.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
valid_ints = {f"int{8 * (i+1)}" for i in range(32)}
1313
valid_uints = {f"uint{8 * (i+1)}" for i in range(32)}
14-
VALID_VYPER_TYPES = {*valid_ints, *valid_uints, "address", "bool", "bytes32", "string"}
14+
VALID_VYPER_TYPES = {*valid_ints, *valid_uints, "address", "bool", "Bytes", "String"}
1515

1616

1717
@dataclass

0 commit comments

Comments
 (0)