From 60c003b202465ffe3f0faeb612f4eec1b1ba478a Mon Sep 17 00:00:00 2001
From: Alex Wernle <awernle@usgs.gov>
Date: Wed, 16 Nov 2022 12:27:19 -0700
Subject: [PATCH] Added force option to force skip the typer.confirm check

---
 geomagio/processing/copy_absolutes.py | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/geomagio/processing/copy_absolutes.py b/geomagio/processing/copy_absolutes.py
index b2398b02..86d0748c 100644
--- a/geomagio/processing/copy_absolutes.py
+++ b/geomagio/processing/copy_absolutes.py
@@ -58,6 +58,10 @@ def copy_absolutes(
         help="Residual spreadsheet directory",
     ),
     factory: ResidualFactory = ResidualFactory.WEB_ABSOLUTES,
+    force: bool = typer.Option(
+        default=False,
+        help="Force skip the check to copy absolutes",
+    ),
 ):
     """Copy absolutes from the web absolutes service OR residual spreadsheets into the metadata service."""
     if factory.value == ResidualFactory.WEB_ABSOLUTES:
@@ -73,12 +77,11 @@ def copy_absolutes(
     )
 
     # confirm whether or not to copy absolutes
-    print(f"Found {len(readings)} absolutes")
-    copy = typer.confirm(f"Are you sure you want to copy {len(readings)} absolutes?")
-    if not copy:
-        print("Not copying absolutes")
-        raise typer.Abort()
-    print("Copying over absolutes")
+    if not force:
+        typer.confirm(
+            f"Are you sure you want to copy {len(readings)} absolutes?", abort=True
+        )
+        print("Copying over absolutes")
 
     # write readings to metadata service
     metadata_factory = MetadataFactory(token=metadata_token, url=metadata_url)
-- 
GitLab