Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 17fc75a

Browse files
committedFeb 4, 2025·
updating tests
1 parent 6b9695c commit 17fc75a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎src/surrealdb/connections/async_ws.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,9 @@ async def unset(self, key: str) -> None:
162162
message = RequestMessage(self.id, RequestMethod.UNSET, params=[key])
163163
await self._send(message, "unsetting")
164164

165-
async def select(self, thing: Union[str, RecordID, Table]) -> Union[List[dict], dict]:
165+
async def select(
166+
self, thing: Union[str, RecordID, Table]
167+
) -> Union[List[dict], dict]:
166168
message = RequestMessage(self.id, RequestMethod.SELECT, params=[thing])
167169
response = await self._send(message, "select")
168170
self.check_response_for_result(response, "select")

0 commit comments

Comments
 (0)
Please sign in to comment.