@@ -42,7 +42,7 @@ def get_string_assignment(
42
42
subject_key , flag_key , subject_attributes , VariationType .STRING
43
43
)
44
44
return (
45
- assigned_variation .typedValue
45
+ assigned_variation .typed_value
46
46
if assigned_variation is not None
47
47
else assigned_variation
48
48
)
@@ -54,7 +54,7 @@ def get_numeric_assignment(
54
54
subject_key , flag_key , subject_attributes , VariationType .NUMERIC
55
55
)
56
56
return (
57
- assigned_variation .typedValue
57
+ assigned_variation .typed_value
58
58
if assigned_variation is not None
59
59
else assigned_variation
60
60
)
@@ -66,7 +66,7 @@ def get_boolean_assignment(
66
66
subject_key , flag_key , subject_attributes , VariationType .BOOLEAN
67
67
)
68
68
return (
69
- assigned_variation .typedValue
69
+ assigned_variation .typed_value
70
70
if assigned_variation is not None
71
71
else assigned_variation
72
72
)
@@ -78,7 +78,7 @@ def get_parsed_json_assignment(
78
78
subject_key , flag_key , subject_attributes , VariationType .JSON
79
79
)
80
80
return (
81
- assigned_variation .typedValue
81
+ assigned_variation .typed_value
82
82
if assigned_variation is not None
83
83
else assigned_variation
84
84
)
@@ -221,7 +221,7 @@ def _get_subject_variation_override(
221
221
return VariationDto (
222
222
name = "override" ,
223
223
value = experiment_config .overrides [subject_hash ],
224
- typedValue = experiment_config .typedOverrides [subject_hash ],
224
+ typed_value = experiment_config .typed_overrides [subject_hash ],
225
225
shard_range = ShardRange (start = 0 , end = 10000 ),
226
226
)
227
227
return None
0 commit comments