Example #1
0
 def _mark_row_processed(row: RowEntries):
     row.state = RowState.PROCESSED
     row.tool_tip = None
Example #2
0
 def _mark_row_error(row: RowEntries, error: Exception):
     row.state = RowState.ERROR
     row.tool_tip = str(error)