(self, attributes: dict[str, Any])
| 71 | return self._owner.value |
| 72 | |
| 73 | def _useAttributes(self, attributes: dict[str, Any]) -> None: |
| 74 | if "all" in attributes: # pragma no branch |
| 75 | self._all = self._makeListOfIntsAttribute(attributes["all"]) |
| 76 | if "owner" in attributes: # pragma no branch |
| 77 | self._owner = self._makeListOfIntsAttribute(attributes["owner"]) |
nothing calls this directly
no test coverage detected