Merge pull request #661 from mcarlton00/emoji-update

CI - remove use_aliases from emoji command
This commit is contained in:
Odd Stråbø 2022-10-05 22:36:08 +02:00 committed by GitHub
commit 83992d199b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ class SectionType(TypedDict):
def reformat(item_format: str, output_emoji: bool) -> None: def reformat(item_format: str, output_emoji: bool) -> None:
data = [ data = [
emojize(x.strip(), use_aliases=True, variant="emoji_type") emojize(x.strip(), variant="emoji_type")
for x in sys.stdin.readlines() for x in sys.stdin.readlines()
if x.strip() if x.strip()
] ]