enable unused_qualifications lint

This commit is contained in:
Charles Hall 2024-05-21 22:00:54 -07:00
parent d7e945f4c5
commit 793d809ac6
No known key found for this signature in database
GPG key ID: 7B8E0645816E07CF
7 changed files with 12 additions and 17 deletions

View file

@ -23,7 +23,7 @@ impl Watchers {
{
hash_map::Entry::Occupied(o) => o.get().1.clone(),
hash_map::Entry::Vacant(v) => {
let (tx, rx) = tokio::sync::watch::channel(());
let (tx, rx) = watch::channel(());
v.insert((tx, rx.clone()));
rx
}