Skip to content

Commit

Permalink
fix nonsensical import error when building docs
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkw committed Nov 23, 2023
1 parent 6aa0c35 commit cfb8ddc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/calliope/src/req_rsp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use maitake_sync::{
WaitCell,
};
use serde::{de::DeserializeOwned, Deserialize, Serialize};
use tracing::{instrument, Level};
use tracing::Level;
use tricky_pipe::mpsc::error::{RecvError, SendError, TrySendError};

#[cfg(test)]
Expand Down Expand Up @@ -190,7 +190,7 @@ where

/// Run the client's dispatcher in the background until cancelled or the
/// connection is reset.
#[instrument(
#[tracing::instrument(
level = Level::DEBUG,
name = "Client::dispatcher",
skip(self),
Expand Down

0 comments on commit cfb8ddc

Please sign in to comment.