From 4d8b4c9d43dfdbf1db122cc12e13851b72bee6ff Mon Sep 17 00:00:00 2001 From: Matt Date: Tue, 19 Jul 2022 10:11:29 -0400 Subject: [PATCH] CI - remove use_aliases from emoji command --- .github/tools/reformat_changelog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/tools/reformat_changelog.py b/.github/tools/reformat_changelog.py index 00ce597..6dd39e2 100755 --- a/.github/tools/reformat_changelog.py +++ b/.github/tools/reformat_changelog.py @@ -23,7 +23,7 @@ class SectionType(TypedDict): def reformat(item_format: str, output_emoji: bool) -> None: data = [ - emojize(x.strip(), use_aliases=True, variant="emoji_type") + emojize(x.strip(), variant="emoji_type") for x in sys.stdin.readlines() if x.strip() ]