(self, attributes: dict[str, Any])
| 878 | return self._priority_position.value |
| 879 | |
| 880 | def _useAttributes(self, attributes: dict[str, Any]) -> None: |
| 881 | super()._useAttributes(attributes) |
| 882 | # Process sub-issue specific attributes |
| 883 | if "parent_issue" in attributes: |
| 884 | self._parent_issue = self._makeClassAttribute(Issue, attributes["parent_issue"]) |
| 885 | if "priority_position" in attributes: |
| 886 | self._priority_position = self._makeIntAttribute(attributes["priority_position"]) |
nothing calls this directly
no test coverage detected