wx.DirDialog multiple does not work on Mac

4.2.2 osx-cocoa (phoenix) wxWidgets 3.2.6:
GetPaths demands a parameter but does not populate it.

def open_multiple_dir_dialog(self, _event):
    with wx.DirDialog(self.frame,
                      message='This is a multiple DirDialog',
                      style=wx.DD_MULTIPLE) as dlg:
        if dlg.ShowModal() == wx.ID_OK:
            paths = []
            print(dlg.GetPaths(paths))
            print(paths)

It looks like a more Pythonic version of GetPaths was implemented in wxPython 4.2.3. Can you please try that version?

Thank you for your quick response. I am having trouble installing 4.2.3. I’ll get back to you once I have that problem resolved.

Yes, it works in 4.2.3. Thank you.