Skip to content

Commit 555b6a4

Browse files
committed
fix init
1 parent ee28995 commit 555b6a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

posthog/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from typing import Callable, Dict, List, Optional, Tuple # noqa: F401
33

44
from posthog.client import Client
5-
from posthog.exception_capture import DEFAULT_DISTINCT_ID, Integrations # noqa: F401
5+
from posthog.exception_capture import Integrations # noqa: F401
66
from posthog.version import VERSION
77

88
__version__ = VERSION
@@ -289,7 +289,7 @@ def capture_exception(
289289
return _proxy(
290290
"capture_exception",
291291
exception=exception,
292-
distinct_id=distinct_id or DEFAULT_DISTINCT_ID,
292+
distinct_id=distinct_id,
293293
properties=properties,
294294
context=context,
295295
timestamp=timestamp,

0 commit comments

Comments
 (0)