diff --git a/cli/commands.py b/cli/commands.py index 9be3fbb..e582a88 100644 --- a/cli/commands.py +++ b/cli/commands.py @@ -104,7 +104,7 @@ def migrateconfig(): @hg.command( "systemd", - help=cmd_help(E.CLAMP, "Copy systemd example to file system"), + help=cmd_help(E.CLAMP, " Copy systemd example to file system"), cls=HelpColorsCommand, help_options_custom_colors=random_colors("-d"), ) diff --git a/cli/static.py b/cli/static.py index b269aa8..0ba406a 100644 --- a/cli/static.py +++ b/cli/static.py @@ -30,16 +30,16 @@ class Char: class Emoji: """Helper class for unicode emoji.""" - BUTTERFLY = "\U0001F98B" + " " - CHECK = "\U00002705" + " " - INFO = "\U00002755" - ERROR = "\U0000274C" + " " - ROCKET = "\U0001F680" + " " - SPARKLES = "\U00002728" + " " - PAPERCLIP = "\U0001F4CE" + " " - KEY = "\U0001F511" - LOCK = "\U0001F512" - CLAMP = "\U0001F5DC" + " " + BUTTERFLY = "\U0001F98B " + CHECK = "\U00002705 " + INFO = "\U00002755 " + ERROR = "\U0000274C " + ROCKET = "\U0001F680 " + SPARKLES = "\U00002728 " + PAPERCLIP = "\U0001F4CE " + KEY = "\U0001F511 " + LOCK = "\U0001F512 " + CLAMP = "\U0001F5DC " WS = Char(" ")