From 97db0946da61072dc0a87965f21c2e98cccb1a44 Mon Sep 17 00:00:00 2001 From: emdee Date: Wed, 16 Nov 2022 20:59:26 +0000 Subject: [PATCH] Fixes --- README.md | 4 ++-- support_phantompy.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 249992a..1f17af3 100644 --- a/README.md +++ b/README.md @@ -62,10 +62,10 @@ for the PyQt ```app.exec``` and the exiting of the program. We've decided to use the best of the shims that merge the Python ```asyncio``` and Qt event loops: [qasyc](https://github.com/CabbageDevelopment/qasync). This is seen as -the successor to the sorta abandoned[quamash](https://github.com/harvimt/quamash). +the successor to the sorta abandoned [quamash](https://github.com/harvimt/quamash). The code is based on a [comment](https://github.com/CabbageDevelopment/qasync/issues/35#issuecomment-1315060043) -by [Alex Marcha](https://github.com/hosaka) who's excellent code helped me. +by [Alex March](https://github.com/hosaka) who's excellent code helped me. As this is my first use of ```asyncio``` and ```qasync``` I may have introduced some errors and it may be improved on, but it works, and it not a monolithic Qt program, so it can be used as a library. diff --git a/support_phantompy.py b/support_phantompy.py index c19968f..1c81f3f 100644 --- a/support_phantompy.py +++ b/support_phantompy.py @@ -108,7 +108,7 @@ def omain_argparser(_=None): help="Write loaded and javascripted result to a HTML file") parser.add_argument('--pdf_output', type=str, default='', help="Write loaded and javascripted result to a PDF file") - parser.add_argument('--show_gui', type=bool, default=False, store_action=True), + parser.add_argument('--show_gui', type=bool, default=False, store_action=True, help="show a progress meter that doesn't work") parser.add_argument('html_url', type=str, nargs='?', required=True,