fix todo in Ord for Section

This commit is contained in:
Dr. Matthias Ratajczak
2023-02-01 17:24:57 +01:00
parent 54ace79cb5
commit 39475f133f
2 changed files with 8 additions and 4 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ impl Pacdef {
Some((SYNC, _)) => self.install_packages(),
Some((UNMANAGED, _)) => Ok(self.show_unmanaged_packages()),
Some((VERSION, _)) => Ok(self.show_version()),
Some((_, _)) => todo!(),
Some((_, _)) => panic!(),
None => {
unreachable!("argument parser requires some subcommand to return an `ArgMatches`")
}