Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
TimDiekmann committed Sep 15, 2022
1 parent 557dd78 commit dab0fe0
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ fn row_stream_to_record_stream(
}

pub async fn read_all_entities(client: &impl AsClient) -> Result<RecordStream, QueryError> {
let row_stream= client
let row_stream = client
.as_client()
.query_raw(
r#"
Expand All @@ -55,7 +55,8 @@ pub async fn read_all_entities(client: &impl AsClient) -> Result<RecordStream, Q
parameter_list([]),
)
.await
.into_report().change_context(QueryError)?;
.into_report()
.change_context(QueryError)?;
Ok(row_stream_to_record_stream(row_stream))
}

Expand Down

0 comments on commit dab0fe0

Please sign in to comment.