diff options
Diffstat (limited to 'helix-term/src/main.rs')
-rw-r--r-- | helix-term/src/main.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/helix-term/src/main.rs b/helix-term/src/main.rs index f350b4c1..cdaa3924 100644 --- a/helix-term/src/main.rs +++ b/helix-term/src/main.rs @@ -49,7 +49,7 @@ fn setup_logging(verbosity: u64) -> Result<(), fern::InitError> { Ok(()) } -fn main() -> Result<(), Error> { +fn main() { let args = clap::app_from_crate!() .arg( Arg::new("files") @@ -79,6 +79,4 @@ fn main() -> Result<(), Error> { // we use the thread local executor to spawn the application task separately from the work pool smol::block_on(app.run()); - - Ok(()) } |