Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pg.Object
: Fix an issue that overridden property is not correctly i…
…nherited by subclasses. Example: ``` import pyglove as pg class A(pg.Object): x: int = 1 class B(A): @Property def x(self) -> int: return 2 class C(B): pass ``` Previously `C.x` will be 1 (the value of symbolic field x), after this change C.x will be 2 (the value of overriden property x inherited from B). PiperOrigin-RevId: 615494844
- Loading branch information