diff options
author | terminaldweller <thabogre@gmail.com> | 2022-02-16 11:05:34 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-02-16 11:05:34 +0000 |
commit | 36b79316cd469f1f290c0dea7c2485cea2be474a (patch) | |
tree | 530fb7d9c15d64635593e2cb400110ca541e018c /bin/colo | |
parent | kmonad (diff) | |
download | scripts-36b79316cd469f1f290c0dea7c2485cea2be474a.tar.gz scripts-36b79316cd469f1f290c0dea7c2485cea2be474a.zip |
style updates
Diffstat (limited to '')
-rwxr-xr-x | bin/colo | 22 |
1 files changed, 2 insertions, 20 deletions
@@ -2,7 +2,6 @@ # _*_ coding=utf-8 _*_ import argparse -import code import signal import sys from html.parser import HTMLParser @@ -313,7 +312,8 @@ class ColoParser(HTMLParser): COLO_LIST.append(data) -def premain(argparser): +def main(): + argparser = Argparser() signal.signal(signal.SIGINT, SigHandler_SIGINT) PRINT_LIST = str() lines = COLORS.split("\n") @@ -396,23 +396,5 @@ def premain(argparser): print(PRINT_LIST) -def main(): - argparser = Argparser() - if argparser.args.dbg: - try: - premain(argparser) - except Exception as e: - if hasattr(e, "__doc__"): - print(e.__doc__) - if hasattr(e, "message"): - print(e.message) - variables = globals().copy() - variables.update(locals()) - shell = code.InteractiveConsole(variables) - shell.interact(banner="DEBUG REPL") - else: - premain(argparser) - - if __name__ == "__main__": main() |