Skip to content

Commit a7bc262

Browse files
committed
Update lib to decide v4
1 parent 7ec5b6a commit a7bc262

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

posthog/request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def _process_response(
9393

9494
def decide(api_key: str, host: Optional[str] = None, gzip: bool = False, timeout: int = 15, **kwargs) -> Any:
9595
"""Post the `kwargs to the decide API endpoint"""
96-
res = post(api_key, host, "/decide/?v=3", gzip, timeout, **kwargs)
96+
res = post(api_key, host, "/decide/?v=4", gzip, timeout, **kwargs)
9797
return _process_response(res, success_message="Feature flags decided successfully")
9898

9999

0 commit comments

Comments
 (0)