Skip to content

Commit 8b35fb4

Browse files
committed
apply code formatting
1 parent 16669ba commit 8b35fb4

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

arango/collection.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -993,10 +993,8 @@ def get_many(self, documents: Sequence[Union[str, Json]]) -> Result[List[Json]]:
993993
:raise arango.exceptions.DocumentGetError: If retrieval fails.
994994
"""
995995
handles = [self._extract_id(d) if isinstance(d, dict) else d for d in documents]
996-
997-
params: Params = {
998-
"onlyget": True
999-
}
996+
997+
params: Params = {"onlyget": True}
1000998

1001999
request = Request(
10021000
method="put",

0 commit comments

Comments
 (0)