aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/main.rs b/src/main.rs
index 6ef7ee1..979c4cf 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -17,7 +17,6 @@
use backend::cliargs::{self, CLIArgs};
use color_eyre::eyre::Result;
-use core::panic;
use errorsetup::init_error_hooks;
use frontend::app::App;
@@ -42,9 +41,9 @@ async fn main() -> Result<()> {
std::process::exit(0);
}
- if !parsed_args.bibfilearg.is_file() {
- panic!("No \'.bib\' file passed, aborting")
- }
+ // if !parsed_args.bibfilearg.is_file() {
+ // panic!("No \'.bib\' file passed, aborting")
+ // }
init_error_hooks()?;