diff --git a/src/main.py b/src/main.py index 6e206a1..0a569c5 100755 --- a/src/main.py +++ b/src/main.py @@ -20,7 +20,6 @@ def main(): try: opts, args = getopt.getopt(sys.argv[1:], "q", ["quicknote"]) except getopt.GetoptError as err: - # print help information and exit: print(err) sys.exit(2) if not opts: @@ -28,10 +27,8 @@ def main(): for o, a in opts: if o in ("-q", "--quicknote"): - print("New quicknote") new_quicknote() else: assert False, "unhandled option" - #print(mainUI.MainUI().open()) if __name__ == "__main__": main()