8000 remove useless cosmetic · winpython/winpython@317e770 · GitHub
[go: up one dir, main page]

Skip to content

Commit 317e770

Browse files
committed
remove useless cosmetic
1 parent 9378f91 commit 317e770

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

winpython/wppm.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -563,8 +563,6 @@ def main(test=False):
563563
# dist.install(pack)
564564
# dist.uninstall(pack)
565565
else:
566-
bold = "\033[1m"
567-
unbold = "\033[0m"
568566
registerWinPythonHelp = f"Register distribution: associate file extensions, icons and context menu with this WinPython"
569567

570568
unregisterWinPythonHelp = f"Unregister distribution: de-associate file extensions, icons and context menu from this WinPython"
@@ -613,38 +611,38 @@ def main(test=False):
613611
action="store_const",
614612
const=True,
615613
default=False,
616-
help=f"list packages matching the given [optionnal] package expression: {unbold}wppm -ls{unbold}, {unbold}wppm -ls pand{unbold}",
614+
help=f"list packages matching the given [optionnal] package expression: wppm -ls, wppm -ls pand",
617615
)
618616
parser.add_argument(
619617
"-p",
620618
dest="pipdown",
621619
action="store_const",
622620
const=True,
623621
default=False,
624-
help=f"show Package dependancies of the given package[option]: {unbold}wppm -p pandas[test]{unbold}",
622+
help=f"show Package dependancies of the given package[option]: wppm -p pandas[test]",
625623
)
626624
parser.add_argument(
627625
"-r",
628626
dest="pipup",
629627
action="store_const",
630628
const=True,
631629
default=False,
632-
help=f"show Reverse dependancies of the given package[option]: {unbold}wppm -r pytest[test]{unbold}",
630+
help=f"show Reverse dependancies of the given package[option]: wppm -r pytest[test]",
633631
)
634632
parser.add_argument(
635633
"-l",
636634
dest="levels",
637635
type=int,
638636
default=2,
639-
help=f"show 'LEVELS' levels of dependancies of the package, default is 2: {unbold}wppm -p pandas -l1{unbold}",
637+
help=f"show 'LEVELS' levels of dependancies of the package, default is 2: wppm -p pandas -l1",
640638
)
641639
parser.add_argument(
642640
"-lsa",
643641
dest="all",
644642
action="store_const",
645643
const=True,
646644
default=False,
647-
help=f"list details of package names matching given regular expression: {unbold}wppm -lsa pandas -l1{unbold}",
645+
help=f"list details of package names matching given regular expression: wppm -lsa pandas -l1",
648646
)
649647
parser.add_argument(
650648
"-t",

0 commit comments

Comments
 (0)
0