increase allowed line-length, fix whitespace in cli.py

This commit is contained in:
Patrick Kanzler 2017-01-30 01:41:01 +01:00
parent 43e30707be
commit b4920aafe2
No known key found for this signature in database
GPG Key ID: F07F07153306FCEF
2 changed files with 4 additions and 4 deletions

View File

@ -8,4 +8,4 @@ universal=1
[flake8] [flake8]
exclude = .git,.tox,.github,.eggs,__pycache__,doc/conf.py,build,dist,capabilities-data,test exclude = .git,.tox,.github,.eggs,__pycache__,doc/conf.py,build,dist,capabilities-data,test
max-line-length = 100 max-line-length = 120

View File

@ -244,13 +244,13 @@ ESCPOS_COMMANDS = [
'option_strings': ('--high_density_horizontal',), 'option_strings': ('--high_density_horizontal',),
'help': 'Image density (horizontal)', 'help': 'Image density (horizontal)',
'type': str_to_bool, 'type': str_to_bool,
}, },
{ {
'option_strings': ('--high_density_vertical',), 'option_strings': ('--high_density_vertical',),
'help': 'Image density (vertical)', 'help': 'Image density (vertical)',
'type': str_to_bool, 'type': str_to_bool,
}, },
], ],
}, },
{ {