Skip to content

Commit dab0fe0

Browse files
committed
Fix formatting
1 parent 557dd78 commit dab0fe0

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

  • packages/graph/hash_graph/lib/graph/src/store/postgres/context

packages/graph/hash_graph/lib/graph/src/store/postgres/context/entity.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ fn row_stream_to_record_stream(
4242
}
4343

4444
pub async fn read_all_entities(client: &impl AsClient) -> Result<RecordStream, QueryError> {
45-
let row_stream= client
45+
let row_stream = client
4646
.as_client()
4747
.query_raw(
4848
r#"
@@ -55,7 +55,8 @@ pub async fn read_all_entities(client: &impl AsClient) -> Result<RecordStream, Q
5555
parameter_list([]),
5656
)
5757
.await
58-
.into_report().change_context(QueryError)?;
58+
.into_report()
59+
.change_context(QueryError)?;
5960
Ok(row_stream_to_record_stream(row_stream))
6061
}
6162

0 commit comments

Comments
 (0)