Skip to content

Commit 6230594

Browse files
authored
Merge pull request godotengine#1555 from raulsntos/fix-r1722784216
Avoid hardcoded type conversion for metadata
2 parents 8b80d91 + 4829199 commit 6230594

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

binding_generator.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2770,8 +2770,6 @@ def correct_type(type_name, meta=None, use_alias=True):
27702770
if meta is not None:
27712771
if "int" in meta:
27722772
return f"{meta}_t"
2773-
elif meta in type_conversion:
2774-
return type_conversion[type_name]
27752773
else:
27762774
return meta
27772775
if type_name in type_conversion:

0 commit comments

Comments
 (0)