remove missing Powder Limit warning

This commit is contained in:
endernon 2025-01-01 20:32:27 +00:00
parent 700f40fba7
commit 3bc00f3389
2 changed files with 0 additions and 5 deletions

View file

@ -42,8 +42,4 @@ pub enum Errorfr {
/// unable to copy (write in) file content
#[error("Error 3.4: Download successful, but unable to write to file.")]
JsonDlReqFileWriteFail,
/// powder limit was not present but powder vec was
#[error("Error 4.1: Array of powders was present, but powder limit was not. \nIf you are using a powder array, the \"powder_limit\" value MUST be present. \nIf you're confused, just set it to 255.\nSuggestion: \"powder_limit\": 255")]
PowderLimitNotPresent
}

View file

@ -16,7 +16,6 @@ use crate::errorfr::Errorfr;
use clap::Parser;
use reqwest::Url;
use crate::errorfr::Errorfr::PowderLimitNotPresent;
#[derive(Parser, Debug, Clone)]
#[command(version, about, long_about = None, arg_required_else_help(true))]