You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I find this behavior surprising with regards to the type safety ConfigDict offers:
c=ConfigDict({'a': 1})
c.a=Nonec.a='string'
I've managed to change the type of a from integer to string without any invocation of ignore_type. Would it perhaps make sense for the a field to "remember" that it was originally an int?
I find this behavior surprising with regards to the type safety ConfigDict offers:
I've managed to change the type of
a
from integer to string without any invocation ofignore_type
. Would it perhaps make sense for thea
field to "remember" that it was originally an int?This is on the master branch (cd29283).
The text was updated successfully, but these errors were encountered: