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