Skip to content

Commit

Permalink
pacify the merciless rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
nikomatsakis committed Aug 28, 2024
1 parent eb045dc commit 686a285
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/bin/project_goals.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ async fn main() -> anyhow::Result<()> {
opt.dry_run,
opt.days_threshold,
&opt.next_meeting_date,
) .await?;
)
.await?;

Ok(())
}
2 changes: 1 addition & 1 deletion src/zulip.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ fn handle_command<'a>(
let Some(next_update) = words.next() else {
return usage_err("expected date of next update");
};

if project_goals::check_project_goal_acl(&ctx.github, gh_id).await? {
ping_project_goals_owners(&ctx.github, false, threshold, &format!("on {next_update}"))
.await
Expand Down

0 comments on commit 686a285

Please sign in to comment.