syntactic changes: remove unneeded parentheses

This commit is contained in:
Jorge López 2025-01-18 18:45:05 +01:00
parent 218a2e6dda
commit 07970468bd
No known key found for this signature in database
GPG key ID: F8D6CEBC4788D6A1

View file

@ -135,7 +135,7 @@ pub enum Command {
impl Command {
fn min_args(&self) -> usize {
(match self {
1 + match self {
Self::Quit
| Self::Schema
| Self::Help
@ -150,7 +150,7 @@ impl Command {
| Self::NullValue
| Self::LoadExtension => 1,
Self::Import => 2,
} + 1) // argv0
} // argv0
}
fn usage(&self) -> &str {