Skip to content

Commit 0312f9c

Browse files
committed
fix circular import issue related to building the docs
1 parent af80e45 commit 0312f9c

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

sentry_sdk/tracing_utils.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
from typing import Any, Dict, Generator, Iterator, Optional, Tuple, Union
4747

4848
from sentry_sdk._types import Attributes
49-
from sentry_sdk.client import BaseClient
5049
from sentry_sdk.utils import ParsedUrl
5150

5251

@@ -231,7 +230,7 @@ def add_http_breadcrumb(status_code: "Optional[int]", data: "dict[str, Any]") ->
231230

232231

233232
def get_url_attributes(
234-
client: "BaseClient", parsed_url: "Optional[ParsedUrl]"
233+
client: "sentry_sdk.client.BaseClient", parsed_url: "Optional[ParsedUrl]"
235234
) -> "Attributes":
236235
"""Build the `url.*` span attributes for an outgoing HTTP request.
237236

0 commit comments

Comments
 (0)