tau/taud/mont_tasks: clippy chore

This commit is contained in:
skoupidi
2024-06-29 16:51:03 +03:00
parent 46f8c30a20
commit a4fdc3cec1

View File

@@ -180,10 +180,7 @@ impl MonthTasks {
Err(_) => Self::create(date, dataset_path),
},
None => {
let path_all = match Self::get_all(dataset_path) {
Ok(t) => t,
Err(_) => vec![],
};
let path_all = Self::get_all(dataset_path).unwrap_or_default();
let mut loaded_mt = Self::new(&[], &[]);