Skip to content
This repository has been archived by the owner on Jul 3, 2023. It is now read-only.

Commit

Permalink
Lint: Format arguments to fit on line
Browse files Browse the repository at this point in the history
  • Loading branch information
berkes committed Aug 5, 2022
1 parent 6c8ea89 commit fd256f0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,11 @@ fn capture_updates(mastodon: elefren::Mastodon, tx: Sender<Message>) -> thread::
})
}

fn handle_messages(rx: Receiver<Message>, output: Output, client: Mastodon) -> thread::JoinHandle<()> {
fn handle_messages(
rx: Receiver<Message>,
output: Output,
client: Mastodon,
) -> thread::JoinHandle<()> {
debug!("opening message handler");
thread::spawn(move || loop {
if let Ok(received) = rx.try_recv() {
Expand Down

0 comments on commit fd256f0

Please sign in to comment.