Skip to content

Commit 5f33b92

Browse files
committed
Fix typo
Ref: Aidbox#69
1 parent 5dd32a2 commit 5f33b92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aidbox_python_sdk/sdk.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def operation( # noqa: PLR0913
152152
access_policy=None,
153153
request_schema=None,
154154
timeout=None,
155-
complience_params: Optional[Dict[str, Any]] = None,
155+
compliance_params: Optional[Dict[str, Any]] = None,
156156
):
157157
if public and access_policy is not None:
158158
raise ValueError("Operation might be public or have access policy, not both")
@@ -186,7 +186,7 @@ def wrapped_func(operation, request):
186186
"method": method,
187187
"path": path,
188188
**({"timeout": timeout} if timeout else {}),
189-
**(complience_params if complience_params else {}),
189+
**(compliance_params if compliance_params else {}),
190190
}
191191
self._operation_handlers[operation_id] = wrapped_func
192192
if public is True:

0 commit comments

Comments
 (0)