Revision 8929d28c lib/cli.py

b/lib/cli.py
355 355
  SubmitOpCode(op)
356 356

  
357 357

  
358
def check_unit(option, opt, value):
358
def check_unit(option, opt, value): # pylint: disable-msg=W0613
359 359
  """OptParsers custom converter for units.
360 360

  
361 361
  """
......
402 402
  return kv_dict
403 403

  
404 404

  
405
def check_ident_key_val(option, opt, value):
405
def check_ident_key_val(option, opt, value):  # pylint: disable-msg=W0613
406 406
  """Custom parser for ident:key=val,key=val options.
407 407

  
408 408
  This will store the parsed values as a tuple (ident, {key: val}). As such,
......
430 430
  return retval
431 431

  
432 432

  
433
def check_key_val(option, opt, value):
433
def check_key_val(option, opt, value):  # pylint: disable-msg=W0613
434 434
  """Custom parser class for key=val,key=val options.
435 435

  
436 436
  This will store the parsed values as a dict {key: val}.

Also available in: Unified diff