CI - remove use_aliases from emoji command

This commit is contained in:
Matt 2022-07-19 10:36:17 -04:00
parent 4134472fde
commit dd7930dfce
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()
] ]