8000 Fixed parameter issues · arangodb/python-arango@2219954 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2219954

Browse files
committed
Fixed parameter issues
1 parent 0de7d51 commit 2219954

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

arango/request.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ class Request:
6161
:type exclusive: str | [str] | None
6262
:param deserialize: Whether the response body can be deserialized.
6363
:type deserialize: bool
64+
:param driverFlags: List of flags for the driver
65+
:type driverFlags: list
6466
6567
:ivar method: HTTP method in lowercase (e.g. "post").
6668
:vartype method: str
@@ -82,6 +84,8 @@ class Request:
8284
:vartype exclusive: str | [str] | None
8385
:ivar deserialize: Whether the response body can be deserialized.
8486
:vartype deserialize: bool
87+
:ivar driverFlags: List of flags for the driver
88+
:vartype driverFlags: list
8589
"""
8690

8791
__slots__ = (
@@ -94,6 +98,7 @@ class Request:
9498
"write",
9599
"exclusive",
96100
"deserialize",
101+
"driverFlags",
97102
)
98103

99104
def __init__(

0 commit comments

Comments
 (0)
0