1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

fix CLI oddities

This commit is contained in:
checktheroads
2020-01-21 02:37:39 -07:00
parent 81ed510396
commit 52c2489658
2 changed files with 11 additions and 11 deletions

View File

@ -30,16 +30,16 @@ class Char:
class Emoji:
"""Helper class for unicode emoji."""
BUTTERFLY = "\U0001F98B" + " "
CHECK = "\U00002705" + " "
BUTTERFLY = "\U0001F98B "
CHECK = "\U00002705 "
INFO = "\U00002755 "
ERROR = "\U0000274C" + " "
ROCKET = "\U0001F680" + " "
SPARKLES = "\U00002728" + " "
PAPERCLIP = "\U0001F4CE" + " "
ERROR = "\U0000274C "
ROCKET = "\U0001F680 "
SPARKLES = "\U00002728 "
PAPERCLIP = "\U0001F4CE "
KEY = "\U0001F511 "
LOCK = "\U0001F512 "
CLAMP = "\U0001F5DC" + " "
CLAMP = "\U0001F5DC "
WS = Char(" ")