Register super properties. Similar to JS `posthog.register()`.
(self, super_properties: Properties)
| 275 | self.is_logged_in = True |
| 276 | |
| 277 | def register(self, super_properties: Properties): |
| 278 | """Register super properties. Similar to JS `posthog.register()`.""" |
| 279 | self.super_properties.update(super_properties) |
| 280 | |
| 281 | def unregister(self, *super_property_keys: str): |
| 282 | """Removes super properties. Similar to JS `posthog.unregister()`.""" |
no test coverage detected