Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
paf31 committed Feb 27, 2024
1 parent 81088c9 commit d0920e5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion rust-connector-sdk/src/default_main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,9 @@ impl<C: Connector> ndc_test::connector::Connector for ConnectorAdapter<C> {
.map_err(|err| ndc_test::error::Error::OtherError(err))
}

async fn get_schema(&self) -> Result<ndc_client::models::SchemaResponse, ndc_test::error::Error> {
async fn get_schema(
&self,
) -> Result<ndc_client::models::SchemaResponse, ndc_test::error::Error> {
match C::get_schema(&self.configuration).await {
Ok(response) => response
.into_value::<Box<dyn std::error::Error + Send + Sync>>()
Expand Down

0 comments on commit d0920e5

Please sign in to comment.