Update typo in persist_handlers.py

This should fix a typo in the return statement.
This commit is contained in:
1marc1
2023-10-27 23:45:17 +11:00
committed by GitHub
parent a118428670
commit f773bb444d

View File

@@ -1335,7 +1335,7 @@ class TreeCtrlHandler(AbstractHandler):
if not root:
return []
if self._window.HasFlag(wx.TR_HIDE_ROOT):
return self.GeSelectionStateOfChildren(root)
return self.GetSelectionStateOfChildren(root)
else:
return self.GetSelectionStateOfItem(root)