diff --git a/crates/ruff_python_ast/src/lib.rs b/crates/ruff_python_ast/src/lib.rs index f35b8c189fb2bf..bd49f93b5eddec 100644 --- a/crates/ruff_python_ast/src/lib.rs +++ b/crates/ruff_python_ast/src/lib.rs @@ -51,7 +51,7 @@ impl SourceType { pub fn from_extension(ext: &str) -> Self { match ext { "toml" => Self::Toml(TomlSourceType::Unrecognized), - "md" | "qmd" => Self::Markdown, + "md" => Self::Markdown, _ => Self::Python(PySourceType::from_extension(ext)), } }