Skip to content

Commit 625563e

Browse files
committed
Update lib to decide v4
1 parent c29f907 commit 625563e

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
@@ -94,7 +94,7 @@ def _process_response(
9494

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

100100

0 commit comments

Comments
 (0)