From 44f9837d403c0a371e2ba275e41760d53807bdf8 Mon Sep 17 00:00:00 2001 From: Johannes Marbach Date: Sun, 12 Sep 2021 14:55:43 +0200 Subject: [PATCH] Add missing parentheses --- README.md | 2 +- squeek2lvgl.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 787205f..5a4a912 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ optional arguments: -h, --help show this help message and exit --input INPUT squeekboard layout to use as input for generation. Has to be a YAML file path relative to data/keyboards. Can be specified multiple times. - --generate-scancodes also generate scancode tables (only works for US layout currently + --generate-scancodes also generate scancode tables (only works for US layout currently) --output OUTPUT output directory for generated files ``` diff --git a/squeek2lvgl.py b/squeek2lvgl.py index ed25c77..8336773 100644 --- a/squeek2lvgl.py +++ b/squeek2lvgl.py @@ -96,7 +96,7 @@ def parse_arguments(): + 'use as input for generation. Has to be a YAML file path relative to data/keyboards. ' + 'Can be specified multiple times.') parser.add_argument('--generate-scancodes', action='store_true', dest='generate_scancodes', help='also ' - + 'generate scancode tables (only works for US layout currently') + + 'generate scancode tables (only works for US layout currently)') parser.add_argument('--output', dest='output', type=str, help='output directory for generated files') args = parser.parse_args()