Don't limit address matching by default

This commit is contained in:
zyphlar
2026-02-25 10:25:48 -08:00
parent 6bb0902faa
commit 340e74f583
+2 -2
View File
@@ -590,8 +590,8 @@ Examples:
help='Force re-download of OSM data (ignore cache)') help='Force re-download of OSM data (ignore cache)')
parser.add_argument('--sample', '-s', type=int, parser.add_argument('--sample', '-s', type=int,
help='Process only a sample of N addresses for testing') help='Process only a sample of N addresses for testing')
parser.add_argument('--max-osm', type=int, default=50000, parser.add_argument('--max-osm', type=int, default=None,
help='Maximum number of OSM addresses to process (default: 50000)') help='Maximum number of OSM addresses to process (default: no limit)')
args = parser.parse_args() args = parser.parse_args()