Skip to content

Commit 29be25a

Browse files
committed
this?
1 parent ebd2ecb commit 29be25a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

posthog/client.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import os
55
import platform
66
import sys
7+
from typing import Any
78
import warnings
89
from datetime import datetime, timedelta
910
from uuid import UUID, uuid4
@@ -72,7 +73,7 @@ def get_os_info():
7273
return os_name, os_version
7374

7475

75-
def system_context() -> dict[str, any]:
76+
def system_context() -> dict[str, Any]:
7677
os_name, os_version = get_os_info()
7778

7879
return {

0 commit comments

Comments
 (0)