fix: apply cargo fmt to fix formatting issues

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
argenis de la rosa 2026-02-17 04:57:18 -05:00
parent 915ce58a8c
commit 4070131bb8
3 changed files with 26 additions and 16 deletions

View file

@ -402,15 +402,17 @@ impl Provider for ReliableProvider {
Some(chunk) => Some((chunk, rx)),
None => None,
}
}).boxed();
})
.boxed();
}
// No streaming support available
stream::once(async move {
Err(super::traits::StreamError::Provider(
"No provider supports streaming".to_string()
"No provider supports streaming".to_string(),
))
}).boxed()
})
.boxed()
}
}