Skip to content

Commit 6793956

Browse files
committed
Fix function overload tracking
1 parent 00080e1 commit 6793956

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

robotpy_build/autowrap/generator_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def get_function_data(
133133
data = self._default_fn_data
134134
report_data.deferred_signatures.append((fn, is_private))
135135
elif not data.overloads:
136-
report_data.deferred_signatures.append((fn, True))
136+
report_data.deferred_signatures.append((fn, is_private))
137137
else:
138138
# When there is overload data present, we have to actually compute
139139
# the signature of every function

0 commit comments

Comments
 (0)