def __init__(self, parent, input_obj, run_check, data=None): InputCheck.__init__(self, parent, input_obj, run_check, data) # Add the timer here instead of decorating a method so that a new # TimedAction is created for every instance self.update_check_status = timed_action(busy_cursor=False)( self.update_check_status)
def __init__(self, parent, input_obj, run_check, data=None): InputCheck.__init__(self, parent, input_obj, run_check, data) # Add the timer here instead of decorating a method so that a new # TimedAction is created for every instance self.update_check_status = timed_action(busy_cursor=False)(self.update_check_status)