From 564313adba4b9788bc29467b76878c20aa3b08cf Mon Sep 17 00:00:00 2001 From: Dustin Bleile Date: Fri, 12 Jul 2024 21:38:35 -0700 Subject: [PATCH] lint black --- pori_python/ipr/main.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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()