``` import pyglove as pg class A(pg.Object): x: Annotated[Dict, "."] = dict() y: Annotated[str, "."] = ".." # Define a simple dictionary data = A(x={1:1}) ``` Most normal user may expect this code snippet work well?