We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 636682f + 7a3d445 commit 0e0ea5bCopy full SHA for 0e0ea5b
tools/agenda-generator/src/generator.rs
@@ -524,7 +524,6 @@ impl GithubQuery {
524
}
525
526
fn write(&mut self, generator: &mut Generator) -> Result<()> {
527
- let mut empty = true;
528
for repo in &self.repos {
529
for labels in &self.labels {
530
let cs_labels = labels.join(",");
@@ -589,19 +588,9 @@ impl GithubQuery {
589
588
590
591
592
-#[derive(Debug)]
593
-struct Fcp<'a> {
594
- title: &'a str,
595
- repo: &'a str,
596
- number: &'a str,
597
- disposition: &'a str,
598
- url: &'a str,
599
- reviewers: Vec<&'a str>,
600
- concerns: bool,
601
-}
602
-
603
#[derive(Debug, Deserialize)]
604
struct Issue {
+ #[allow(dead_code)]
605
number: u32,
606
html_url: String,
607
title: String,
0 commit comments