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(
93
93
user_context .client_name ,
94
94
user_context .client_version ,
95
95
user_context .anonymize_ip ,
96
+ user_context .region ,
96
97
True ,
97
98
)
98
99
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ def __init__(
34
34
anonymize_ip : bool ,
35
35
enrich_decisions : bool = True ,
36
36
visitors : Optional [list [Visitor ]] = None ,
37
+ region : str = 'US'
37
38
):
38
39
self .account_id = account_id
39
40
self .project_id = project_id
@@ -43,6 +44,7 @@ def __init__(
43
44
self .anonymize_ip = anonymize_ip
44
45
self .enrich_decisions = enrich_decisions
45
46
self .visitors = visitors or []
47
+ self .region = region
46
48
47
49
def __eq__ (self , other : object ) -> bool :
48
50
batch_obj = self .get_event_params ()
You can’t perform that action at this time.
0 commit comments