File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,13 @@ Documentation: https://reddit-experiments.readthedocs.io/
1010Install the library:
1111
1212``` console
13- $ pip install reddit-experiments
13+ $ pip install reddit-experiments reddit-v2-events > =2.8.2
1414```
1515
1616Add the client to your application's Baseplate context:
1717
1818``` python
19+ from event_utils.v2_event_utils import ExperimentLogger
1920 from reddit_decider import decider_client_from_config
2021
2122 decider = decider_client_from_config(
Original file line number Diff line number Diff line change @@ -192,6 +192,9 @@ def __init__(
192192 else :
193193 self ._event_logger = DebugLogger ()
194194
195+ def internal_decider (self ) -> RustDecider :
196+ return self ._internal
197+
195198 def _send_expose (self , event : str , exposure_fields : dict ) -> None :
196199 event_fields = deepcopy (exposure_fields )
197200 try :
You can’t perform that action at this time.
0 commit comments