summaryrefslogtreecommitdiff
path: root/users/drashna/keyrecords/autocorrection/make_autocorrection_data.py
diff options
context:
space:
mode:
Diffstat (limited to 'users/drashna/keyrecords/autocorrection/make_autocorrection_data.py')
-rwxr-xr-xusers/drashna/keyrecords/autocorrection/make_autocorrection_data.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/users/drashna/keyrecords/autocorrection/make_autocorrection_data.py b/users/drashna/keyrecords/autocorrection/make_autocorrection_data.py
index 27383b8955..54fd9ba594 100755
--- a/users/drashna/keyrecords/autocorrection/make_autocorrection_data.py
+++ b/users/drashna/keyrecords/autocorrection/make_autocorrection_data.py
@@ -252,8 +252,9 @@ def write_generated_code(autocorrections: List[Tuple[str, str]],
for typo, correction in autocorrections)),
f'\n#define AUTOCORRECTION_MIN_LENGTH {len(min_typo)} // "{min_typo}"\n',
f'#define AUTOCORRECTION_MAX_LENGTH {len(max_typo)} // "{max_typo}"\n\n',
- textwrap.fill('static const uint8_t autocorrection_data[%d] PROGMEM = {%s};' % (
- len(data), ', '.join(map(str, data))), width=80, subsequent_indent=' '),
+ f'#define DICTIONARY_SIZE {len(data)}\n\n',
+ textwrap.fill('static const uint8_t autocorrection_data[DICTIONARY_SIZE] PROGMEM = {%s};' % (
+ ', '.join(map(str, data))), width=120, subsequent_indent=' '),
'\n\n'])
with open(file_name, 'wt') as f: