From 035748fc61c6eaf04830745e63c3922b07f55803 Mon Sep 17 00:00:00 2001 From: ggman12 Date: Mon, 16 Feb 2026 18:26:53 -0500 Subject: [PATCH] skip using base release in run_local.py --- src/adsb/run_local.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/adsb/run_local.py b/src/adsb/run_local.py index bc9f221..b44dd00 100644 --- a/src/adsb/run_local.py +++ b/src/adsb/run_local.py @@ -60,7 +60,8 @@ def main(): parser.add_argument( "--skip-base", action="store_true", - help="Skip downloading and merging with base release" + default=True, + help="Skip downloading and merging with base release (default: True for historical runs)" ) args = parser.parse_args()