cargo fmt

main
_ 2025-05-03 13:54:52 -05:00
parent 598163fb27
commit e8aba202af
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ pub struct Dwml {
impl std::str::FromStr for Dwml { impl std::str::FromStr for Dwml {
type Err = quick_xml::DeError; type Err = quick_xml::DeError;
fn from_str(s: &str) -> Result<Self, quick_xml::DeError> { fn from_str(s: &str) -> Result<Self, quick_xml::DeError> {
quick_xml::de::from_str(s) quick_xml::de::from_str(s)
} }