Skip to content

Commit

Permalink
Merge pull request #73 from scd31/negative_bbox
Browse files Browse the repository at this point in the history
Allow hyphen at start of bbox argument
  • Loading branch information
louis-e authored Oct 14, 2024
2 parents e0cecfd + 010a7f7 commit 6d68afd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use std::time::Duration;
))]
pub struct Args {
/// Bounding box of the area (min_lng,min_lat,max_lng,max_lat) (required)
#[arg(long)]
#[arg(long, allow_hyphen_values = true)]
pub bbox: Option<String>,

/// JSON file containing OSM data (optional)
Expand Down

0 comments on commit 6d68afd

Please sign in to comment.