KeyPad: Improve parameter descriptions

This commit is contained in:
Florian Festi 2020-04-13 13:53:38 +02:00
parent 487f75ff5f
commit f961cd533d
1 changed files with 2 additions and 2 deletions

View File

@ -20,11 +20,11 @@ class Keypad(Boxes):
)
self.argparser.add_argument(
'--btn_x', action='store', type=int, default=3,
help='number of buttons in x-row'
help='number of buttons per row'
)
self.argparser.add_argument(
'--btn_y', action='store', type=int, default=4,
help='number of buttons in x-row'
help='number of buttons per column'
)
self.argparser.add_argument(
'--top_thickness', action='store', type=float, default=1.5,