forked from janek/mostr
1
0
Fork 0

style(tasks): reformat

This commit is contained in:
xeruf 2024-11-09 18:01:40 +01:00
parent 5a8fa69e4c
commit cc64c0f493
1 changed files with 24 additions and 24 deletions

View File

@ -302,7 +302,6 @@ impl TasksRelay {
Durations::from(self.get_own_events_history(), &vec![&id]).sum::<Duration>().as_secs() Durations::from(self.get_own_events_history(), &vec![&id]).sum::<Duration>().as_secs()
} }
/// Total time in seconds tracked on this task and its subtasks by all users. /// Total time in seconds tracked on this task and its subtasks by all users.
fn total_time_tracked(&self, id: EventId) -> u64 { fn total_time_tracked(&self, id: EventId) -> u64 {
let mut total = 0; let mut total = 0;
@ -1256,10 +1255,11 @@ where
} }
/// Formats the given seconds according to the given format. /// Formats the given seconds according to the given format.
/// MMM - minutes /// - MMM - minutes
/// MM - minutes of the hour /// - MM - minutes of the hour
/// HH - hours /// - HH - hours
/// Returns an empty string if under a minute. ///
/// Returns an empty string if under one minute.
fn display_time(format: &str, secs: u64) -> String { fn display_time(format: &str, secs: u64) -> String {
Some(secs / 60) Some(secs / 60)
.filter(|t| t > &0) .filter(|t| t > &0)