Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
abey79 committed Dec 18, 2024
1 parent c1d6810 commit 87a24ea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/top/rerun/src/commands/entrypoint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ where
}

fn run_impl(
main_thread_token: crate::MainThreadToken,
_main_thread_token: crate::MainThreadToken,
_build_info: re_build_info::BuildInfo,
call_source: CallSource,
args: Args,
Expand Down Expand Up @@ -838,10 +838,10 @@ fn run_impl(
} else {
#[cfg(feature = "native_viewer")]
return re_viewer::run_native_app(
main_thread_token,
_main_thread_token,
Box::new(move |cc| {
let mut app = re_viewer::App::new(
main_thread_token,
_main_thread_token,
_build_info,
&call_source.app_env(),
startup_options,
Expand Down

0 comments on commit 87a24ea

Please sign in to comment.