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
@dataclass
class User:
name: str
age: int
cfg1 = OmegaConf.create(module.User(name="James Bond", age=7))
with pytest.raises(ValidationError):
cfg1.age = "not a number"
cfg2 = OmegaConf.create(cfg1)
with pytest.raises(ValidationError):
cfg2.age = "not a number"
The text was updated successfully, but these errors were encountered:
test:
The text was updated successfully, but these errors were encountered: