From 16fa539f749ba753d8c714862bc497a009ac976d Mon Sep 17 00:00:00 2001 From: guidotheelen Date: Wed, 22 Apr 2020 09:51:20 +0200 Subject: [PATCH] also check single emoji --- check_emoji_sequences.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/check_emoji_sequences.py b/check_emoji_sequences.py index 6e43c3caf..2accd4a04 100755 --- a/check_emoji_sequences.py +++ b/check_emoji_sequences.py @@ -271,11 +271,11 @@ def _check_coverage(seq_to_filepath, unicode_version): # check single emoji, this includes most of the special chars emoji = sorted(unicode_data.get_emoji()) - # for cp in emoji: - # if tuple([cp]) not in seq_to_filepath: - # print( - # 'coverage: missing single %04x (%s)' % ( - # cp, unicode_data.name(cp, ''))) + for cp in emoji: + if tuple([cp]) not in seq_to_filepath: + print( + 'coverage: missing single %04x (%s)' % ( + cp, unicode_data.name(cp, ''))) # special characters # all but combining enclosing keycap are currently marked as emoji