diff --git a/pori_python/ipr/main.py b/pori_python/ipr/main.py index ed0906e..eb9aa4c 100644 --- a/pori_python/ipr/main.py +++ b/pori_python/ipr/main.py @@ -92,16 +92,16 @@ def command_interface() -> None: help="Write to output_json_path on successful IPR uploads instead of just when the upload fails", ) parser.add_argument( - '--async_upload', + "--async_upload", default=False, - action='store_true', - help='True if reports-async ipr endpoint should be used instead of basic reports', + action="store_true", + help="True if reports-async ipr endpoint should be used instead of basic reports", ) parser.add_argument( - '--mins_to_wait', + "--mins_to_wait", default=5, - action='store', - help='is using reports-async, number of minutes to wait before throwing error', + action="store", + help="is using reports-async, number of minutes to wait before throwing error", ) args = parser.parse_args()