fn fmt()

in issue-bot/src/main.rs [238:244]


    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let source = match self {
            Self::Github => "Github",
            Self::HuggingFace => "HuggingFace",
        };
        write!(f, "{}", source)
    }