(self)
| 614 | del self.attributes[name] |
| 615 | |
| 616 | def _assert_mutability(self) -> None: |
| 617 | if self.frozen: |
| 618 | raise TypeError("Trying to modify an immutable Settings object") |
| 619 | |
| 620 | def copy(self) -> Self: |
| 621 | """ |
no outgoing calls
no test coverage detected