Skip to content

Commit

Permalink
Update source/NVDAObjects/IAccessible/__init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
seanbudd authored Dec 2, 2024
1 parent 0561973 commit 26f0755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/NVDAObjects/IAccessible/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1161,7 +1161,7 @@ def isPointInObject(self, x, y):
return False
return True

def _get_labeledBy(self) -> "IAccessible" | None:
def _get_labeledBy(self) -> "IAccessible | None":
label = self._getIA2RelationFirstTarget(IAccessibleHandler.RelationType.LABELLED_BY)
if label:
return label
Expand Down

0 comments on commit 26f0755

Please sign in to comment.