facebookresearch / habitat-sim

A flexible, high-performance 3D simulator for Embodied AI research.
https://aihabitat.org/
MIT License
2.45k stars 404 forks source link

[bugfix] - reorder Configuration setter bindings #2401

Closed aclegg3 closed 1 month ago

aclegg3 commented 1 month ago

Motivation and Context

Python seems to treat bindings as a dict or list and searches for the first matching override for a bound function. Python treats Bool as a subclass of Integer, so set(key, Bool) in Configuration was writing integers. Re-ordering the bindings fixes this.

How Has This Been Tested

Local testing and new python test case

Types of changes

Checklist