Skip to content

Commit

Permalink
fix: run rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
joel authored and joel committed Jan 25, 2024
1 parent a03fe47 commit 19fa4c7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion wrappers/src/fdw/cognito_fdw/cognito_client/rows_iterator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,10 @@ impl RowsIterator {
.filter_map(|u| u.into_row(&self.columns).ok())
.collect::<VecDeque<Row>>())
}
Err(e) => Err(CognitoClientError::AWSCognitoError(format!("Error sending request: {:?}", e))),
Err(e) => Err(CognitoClientError::AWSCognitoError(format!(
"Error sending request: {:?}",
e
))),
}
})?;

Expand Down

0 comments on commit 19fa4c7

Please sign in to comment.