From d39e9b3499e4ec6b888f6b6049c4fe56449eebfd Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Fri, 17 Nov 2023 11:17:00 -0600 Subject: [PATCH] Remove duplicate `cache_dir` argument from `puffin-dev resolve-cli` (#445) --- crates/puffin-dev/src/resolve_cli.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crates/puffin-dev/src/resolve_cli.rs b/crates/puffin-dev/src/resolve_cli.rs index 4769633cf..aa32564e3 100644 --- a/crates/puffin-dev/src/resolve_cli.rs +++ b/crates/puffin-dev/src/resolve_cli.rs @@ -1,5 +1,4 @@ use std::fs; -use std::path::PathBuf; use anstream::println; use clap::Parser; @@ -18,9 +17,6 @@ pub(crate) struct ResolveCliArgs { requirements: Vec, #[clap(long)] limit: Option, - /// Path to the cache directory. - #[arg(global = true, long, env = "PUFFIN_CACHE_DIR")] - cache_dir: Option, /// Don't build source distributions. This means resolving will not run arbitrary code. The /// cached wheels of already built source distributions will be reused. #[clap(long)]