File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,7 @@ def create_log_event(
9393 user_context .client_name ,
9494 user_context .client_version ,
9595 user_context .anonymize_ip ,
96+ user_context .region ,
9697 True ,
9798 )
9899
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ def __init__(
3434 anonymize_ip : bool ,
3535 enrich_decisions : bool = True ,
3636 visitors : Optional [list [Visitor ]] = None ,
37+ region : str = 'US'
3738 ):
3839 self .account_id = account_id
3940 self .project_id = project_id
@@ -43,6 +44,7 @@ def __init__(
4344 self .anonymize_ip = anonymize_ip
4445 self .enrich_decisions = enrich_decisions
4546 self .visitors = visitors or []
47+ self .region = region
4648
4749 def __eq__ (self , other : object ) -> bool :
4850 batch_obj = self .get_event_params ()
You can’t perform that action at this time.
0 commit comments