Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
neilkakkar committed Aug 21, 2024
1 parent 02ce128 commit 54da0d5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion posthog/exception_capture.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import json
import sys
import threading
from typing import TYPE_CHECKING
import json

from posthog.exception_utils import single_exception_from_error_tuple

Expand Down
10 changes: 5 additions & 5 deletions posthog/exception_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
# 💖open source (under MIT License)
# We want to keep payloads as similar to Sentry as possible for easy interoperability

from typing import TYPE_CHECKING
import linecache
import os
import re
import sys
from datetime import datetime
from typing import TYPE_CHECKING

try:
# Python 3.11
Expand All @@ -26,19 +26,19 @@
from typing import (
Any,
Callable,
cast,
Dict,
Iterator,
List,
Literal,
Optional,
overload,
Set,
Tuple,
Type,
TypedDict,
TypeVar,
Union,
Literal,
TypedDict,
cast,
overload,
)

ExcInfo = Union[
Expand Down

0 comments on commit 54da0d5

Please sign in to comment.