Skip to content

Commit

Permalink
Merge pull request #23 from Urban-Analytics-Technology-Platform/fix_b…
Browse files Browse the repository at this point in the history
…box_args

Allows the bounding box cli argument to accept negative values
  • Loading branch information
stuartlynn authored May 22, 2024
2 parents 9ea552e + 251a457 commit 6a5224e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ pub trait RunCommand {
#[derive(Args, Debug)]
pub struct DataCommand {
/// Only get data in bounding box ([min_lat,min_lng,max_lat,max_lng])
#[arg(short, long)]
#[arg(short, long, allow_hyphen_values(true))]
bbox: Option<BBox>,
/// Only get the specific metrics
#[arg(short, long)]
Expand Down

0 comments on commit 6a5224e

Please sign in to comment.