示例#1
0
 def __setattr__(self, attr_name: str, attr_value: Any) -> NoReturn:
     """Makes inner state of the containers immutable."""
     raise ImmutableStateError()
示例#2
0
 def __delattr__(self, attr_name: str) -> NoReturn:  # noqa: WPS603
     """Makes inner state of the containers immutable for deletion."""
     raise ImmutableStateError()