consistent syntax

This commit is contained in:
davisgoglin 2016-03-12 16:53:13 -08:00 committed by Davis Goglin
parent 99291abd10
commit d523b4d342
1 changed files with 8 additions and 8 deletions

View File

@ -10,7 +10,7 @@ from escpos import constants
parser = argparse.ArgumentParser( parser = argparse.ArgumentParser(
description='CLI for python-escpos', description='CLI for python-escpos',
epilog='To see help for escpos commands, run with a destination defined.', epilog='To see help for escpos commands, run with a destination defined.'
) )
dest_subparsers = parser.add_subparsers( dest_subparsers = parser.add_subparsers(
title='Destination', title='Destination',
@ -97,12 +97,12 @@ parser_dest_serial.add_argument(
parser_dest_serial.add_argument( parser_dest_serial.add_argument(
'--parity', '--parity',
help='Parity checking', help='Parity checking',
choices=[serial.PARITY_NONE, serial.PARITY_EVEN, serial.PARITY_ODD, serial.PARITY_MARK, serial.PARITY_SPACE], choices=[serial.PARITY_NONE, serial.PARITY_EVEN, serial.PARITY_ODD, serial.PARITY_MARK, serial.PARITY_SPACE]
) )
parser_dest_serial.add_argument( parser_dest_serial.add_argument(
'--stopbits', '--stopbits',
help='Number of stopbits', help='Number of stopbits',
choices=[serial.STOPBITS_ONE, serial.STOPBITS_ONE_POINT_FIVE, serial.STOPBITS_TWO], choices=[serial.STOPBITS_ONE, serial.STOPBITS_ONE_POINT_FIVE, serial.STOPBITS_TWO]
) )
parser_dest_serial.add_argument( parser_dest_serial.add_argument(
'--xonxoff', '--xonxoff',
@ -118,7 +118,7 @@ parser_dest_serial.add_argument(
cmd_parser = argparse.ArgumentParser( cmd_parser = argparse.ArgumentParser(
description='Parser for escpos commands', description='Parser for escpos commands',
usage='{previous command parts} {espos command} ...', usage='{previous command parts} {espos command} ...'
) )
command_subparsers = cmd_parser.add_subparsers( command_subparsers = cmd_parser.add_subparsers(
@ -139,12 +139,12 @@ parser_command_barcode.set_defaults(func='barcode')
parser_command_barcode.add_argument( parser_command_barcode.add_argument(
'--code', '--code',
help='Barcode data to print', help='Barcode data to print',
required=True, required=True
) )
parser_command_barcode.add_argument( parser_command_barcode.add_argument(
'--bc', '--bc',
help='Barcode format', help='Barcode format',
required=True, required=True
) )
parser_command_barcode.add_argument( parser_command_barcode.add_argument(
'--height', '--height',
@ -169,7 +169,7 @@ parser_command_barcode.add_argument(
parser_command_barcode.add_argument( parser_command_barcode.add_argument(
'--align_ct', '--align_ct',
help='Align barcode center', help='Align barcode center',
type=bool, type=bool
) )
parser_command_barcode.add_argument( parser_command_barcode.add_argument(
'--function_type', '--function_type',
@ -195,7 +195,7 @@ parser_command_block_text.add_argument(
parser_command_block_text.add_argument( parser_command_block_text.add_argument(
'--columns', '--columns',
help='Number of columns', help='Number of columns',
type=int, type=int
) )
parser_command_cut = command_subparsers.add_parser('cut', help='Cut the paper') parser_command_cut = command_subparsers.add_parser('cut', help='Cut the paper')