diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-22 20:22:06 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-22 20:22:06 +0200 |
commit | 66034207a6b98fb8e9b7a6b1f9d860731dc44743 (patch) | |
tree | f1065a7b1758e82e3d537ed8febeece12f1b93ef /src/main.rs | |
parent | fix(update): Propagate the logging options to the `update_raw.py` script (diff) | |
download | yt-66034207a6b98fb8e9b7a6b1f9d860731dc44743.tar.gz yt-66034207a6b98fb8e9b7a6b1f9d860731dc44743.zip |
refactor(cli): Remove the useless `concurrent_processes` flag from `update`
With the new `update_raw.py` script, supporting this flag becomes nearly impossible. Thus, we're simply removing it.
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 53cfc9e..3852b8e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -82,7 +82,6 @@ async fn main() -> Result<()> { Command::Update { max_backlog, subscriptions, - concurrent_processes, } => { let all_subs = get_subscriptions(&app).await?; |