From 52ba8483700f6f308dc477c52cbba08b0fb4c52a Mon Sep 17 00:00:00 2001 From: simon busch Date: Tue, 28 Mar 2023 16:23:33 +0200 Subject: [PATCH] remove unused function --- src/main.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/main.rs b/src/main.rs index a38fe7a..077e5e0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -329,9 +329,3 @@ async fn main() -> Result<(), Box> { } Ok(()) } - -async fn refresh_application(username: &str, access_token: &str) -> (Vec, Vec, i32, i32) { - let (issues_list_open, issues_list_closed, issues_list_open_len, issues_list_closed_len) = init_gh_data(&username, &access_token).await.unwrap(); - - (issues_list_open, issues_list_closed, issues_list_open_len, issues_list_closed_len) -}