Skip to content

Commit e6c9291

Browse files
committed
Merge pull request opencv#19180 from alalek:fixup_19161
2 parents c555a67 + a6f14ca commit e6c9291

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/js/generator/embindgen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -822,7 +822,7 @@ def gen(self, dst_file, src_files, core_bindings):
822822

823823

824824
# Generate bindings for properties
825-
for property in sorted(class_info.props):
825+
for property in class_info.props:
826826
_class_property = class_property_enum_template if property.tp in type_dict else class_property_template
827827
class_bindings.append(_class_property.substitute(js_name=property.name, cpp_name='::'.join(
828828
[class_info.cname, property.name])))

0 commit comments

Comments
 (0)