mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
fix clippy warnings
This commit is contained in:
parent
d832b0b859
commit
42d988d601
3 changed files with 4 additions and 6 deletions
|
@ -1,7 +1,6 @@
|
|||
use crate::server::{AddVersionResult, GetVersionResult, HistorySegment, Server, VersionId};
|
||||
use failure::{format_err, Fallible};
|
||||
use std::io::Read;
|
||||
use ureq;
|
||||
use uuid::Uuid;
|
||||
|
||||
pub struct RemoteServer {
|
||||
|
|
|
@ -151,9 +151,7 @@ impl Task {
|
|||
pub fn is_active(&self) -> bool {
|
||||
self.taskmap
|
||||
.iter()
|
||||
.filter(|(k, v)| k.starts_with("start.") && v.is_empty())
|
||||
.next()
|
||||
.is_some()
|
||||
.any(|(k, v)| k.starts_with("start.") && v.is_empty())
|
||||
}
|
||||
|
||||
pub fn get_modified(&self) -> Option<DateTime<Utc>> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue