summaryrefslogtreecommitdiffstats
path: root/sq/src/commands/certify.rs
diff options
context:
space:
mode:
Diffstat (limited to 'sq/src/commands/certify.rs')
-rw-r--r--sq/src/commands/certify.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/sq/src/commands/certify.rs b/sq/src/commands/certify.rs
index 8779e5e3..746737b8 100644
--- a/sq/src/commands/certify.rs
+++ b/sq/src/commands/certify.rs
@@ -30,7 +30,7 @@ pub fn certify(config: Config, m: &clap::ArgMatches)
.map(|s| s.parse()).unwrap_or(Ok(120))?;
let regex = m.values_of("regex").map(|v| v.collect::<Vec<_>>())
.unwrap_or_default();
- if trust_depth == 0 && regex.len() > 0 {
+ if trust_depth == 0 && !regex.is_empty() {
return Err(
anyhow::format_err!("A regex only makes sense \
if the trust depth is greater than 0"));
@@ -123,7 +123,7 @@ pub fn certify(config: Config, m: &clap::ArgMatches)
while let Some(name) = n.next() {
let value = n.next().unwrap();
- let (critical, name) = if name.len() > 0
+ let (critical, name) = if !name.is_empty()
&& Some('!') == name.chars().next()
{
(true, &name[1..])