File tree Expand file tree Collapse file tree 3 files changed +16
-7
lines changed
Expand file tree Collapse file tree 3 files changed +16
-7
lines changed Original file line number Diff line number Diff line change 1+ ## 3.3.4 - 2024-01-30
2+
3+ 1 . Update type hints for module variables to work with newer versions of mypy
4+
15## 3.3.3 - 2024-01-26
26
371 . Remove new relative date operators, combine into regular date operators
Original file line number Diff line number Diff line change 77__version__ = VERSION
88
99"""Settings."""
10- api_key = None # type: str
11- host = None # type: str
12- on_error = None # type: Callable
10+ api_key = None # type: Optional[ str]
11+ host = None # type: Optional[ str]
12+ on_error = None # type: Optional[ Callable]
1313debug = False # type: bool
1414send = True # type: bool
1515sync_mode = False # type: bool
1616disabled = False # type: bool
17- personal_api_key = None # type: str
18- project_api_key = None # type: str
17+ personal_api_key = None # type: Optional[ str]
18+ project_api_key = None # type: Optional[ str]
1919poll_interval = 30 # type: int
2020disable_geoip = True # type: bool
2121
22- default_client = None
22+ default_client = None # type: Optional[Client]
2323
2424
2525def capture (
@@ -405,6 +405,11 @@ def feature_flag_definitions():
405405 return _proxy ("feature_flag_definitions" )
406406
407407
408+ def load_feature_flags ():
409+ """Load feature flag definitions from PostHog."""
410+ return _proxy ("load_feature_flags" )
411+
412+
408413def page (* args , ** kwargs ):
409414 """Send a page call."""
410415 _proxy ("page" , * args , ** kwargs )
Original file line number Diff line number Diff line change 1- VERSION = "3.3.3 "
1+ VERSION = "3.3.4 "
22
33if __name__ == "__main__" :
44 print (VERSION , end = "" ) # noqa: T201
You can’t perform that action at this time.
0 commit comments