Skip to content

Commit a9463c4

Browse files
committed
Fix analytics error
1 parent 4475af8 commit a9463c4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/analytics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def capture(event: str, distinct_id: str, properties: dict | None = None) -> Non
5959
client = get_posthog_client()
6060
if client:
6161
all_properties = {"application": APPLICATION, **(properties or {})}
62-
client.capture(distinct_id, event, all_properties)
62+
client.capture(distinct_id, event, properties=all_properties)
6363

6464

6565
def shutdown() -> None:

0 commit comments

Comments
 (0)