Can't change cell with one tab in a wx.GridCellEditor

I would really appreciate help with my problem: I’m using a GridCellEditor in a cell of a grid, so it changes to right cell with one tab when the cell value has changed, but when it has not, it does not navigate, for the contrary i falls in a infinite loop; below is the code with the comments about the error, the error appears in the method OnEditorHidden.
Any help is welcome.

import wx
import wx.grid


class Wndw(wx.Frame):
    def __init__(self, parent):

        wx.Frame.__init__(self, id=-1, name='', parent=None, pos=wx.Point(400, 100), size=wx.Size(120, 120), style=wx.DEFAULT_FRAME_STYLE, title='Grid/LanguagesCombo')
        self.SetClientSize(wx.Size(300,300))			
        self.VentanaDeslizante = wx.ScrolledWindow(id=-1,name='VentanaDeslizante', parent=self, pos=wx.Point(0, 0), size=wx.Size(10, 10), style=wx.HSCROLL | wx.VSCROLL)
 
        EditorOpciones = wx.grid.GridCellChoiceEditor([])

        self.thegrid = wx.grid.Grid(id=-1, name='grid1',parent=self.VentanaDeslizante, pos=wx.Point(0, 0),size=wx.Size(250, 175), style=0)
        self.thegrid.CreateGrid(3, 3)
        self.thegrid.SetCellEditor(0, 0, EditorOpciones)
        self.thegrid.list = [ ('Chinese'), ('Japanese'), ('Norway') ]			
        self.thegrid.SetCellValue(0, 0, self.thegrid.list[0])		
     
        self.thegrid.Bind(wx.grid.EVT_GRID_CELL_CHANGED    ,   self.CellChange)		# I need to move to next cell, method does work
        self.thegrid.Bind(wx.grid.EVT_GRID_EDITOR_CREATED  ,   self.OnEditorCreation)
        self.thegrid.Bind(wx.grid.EVT_GRID_EDITOR_HIDDEN   ,   self.OnEditorHidden)	# I need to move to next cell, method does not work

    #********************************************* 
    def CellChange(self, event):

        line   = event.GetRow()
        column = event.GetCol()

        # When changing cell value, method MoveCursorRight works well
        # when pressing key tab ¡¡¡

        self.thegrid.MoveCursorRight(False)

        event.Skip()
    #*********************************************   
    def OnEditorHidden(self, event):

        line   = event.GetRow()
        column = event.GetCol()
    
        # Method GoToCell invocation below try to change focus to next right cell
        # with tab key , but does an infinite loop instead ?
        # Note: Cell value not changed

        #self.thegrid.GoToCell(line, column + 1)           # Please uncomment here to see the error

        event.Skip()
    #********************************************* 
    def OnEditorCreation(self, event):		# Creation of the editor and loading its data, it's Ok.

        self.thecombo = event.GetControl()	# Get the ComboBox belonging to GridCellChoiceEditor

        for  language  in self.thegrid.list:
                self.thecombo.Append(language)
        event.Skip()
    #********************************************* 
        
if __name__ == '__main__':
    app=wx.App()
    frame = Wndw(None)
    frame.Show()
    app.MainLoop()

Better handle the tab key directly. Look at EVT_CHAR_HOOK, maybe EVT_KEY_DOWN.

Thank you for the answer, I will work around that.

Your solution about EVT_CHAR_HOOK, solved the problem. Thanks