We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebd2ecb commit 29be25aCopy full SHA for 29be25a
posthog/client.py
@@ -4,6 +4,7 @@
4
import os
5
import platform
6
import sys
7
+from typing import Any
8
import warnings
9
from datetime import datetime, timedelta
10
from uuid import UUID, uuid4
@@ -72,7 +73,7 @@ def get_os_info():
72
73
return os_name, os_version
74
75
-def system_context() -> dict[str, any]:
76
+def system_context() -> dict[str, Any]:
77
os_name, os_version = get_os_info()
78
79
return {
0 commit comments