(self, attributes: dict[str, Any])
| 79 | return self._url.value |
| 80 | |
| 81 | def _useAttributes(self, attributes: dict[str, Any]) -> None: |
| 82 | if "name" in attributes: # pragma no branch |
| 83 | self._name = self._makeStringAttribute(attributes["name"]) |
| 84 | if "source" in attributes: # pragma no branch |
| 85 | self._source = self._makeStringAttribute(attributes["source"]) |
| 86 | if "url" in attributes: # pragma no branch |
| 87 | self._url = self._makeStringAttribute(attributes["url"]) |
nothing calls this directly
no test coverage detected