Skip to content

Commit 05b67ee

Browse files
rushitatRushitaThakkar
authored andcommitted
Fix lint
1 parent 9788d3c commit 05b67ee

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

src/gradient/_base_client.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
not_given,
6363
)
6464
from ._utils import is_dict, is_list, asyncify, is_given, lru_cache, is_mapping
65-
from ._compat import PYDANTIC_V1, model_copy, model_dump
65+
from ._compat import PYDANTIC_V1, model_copy
6666
from ._models import GenericModel, FinalRequestOptions, validate_type, construct_type
6767
from ._response import (
6868
APIResponse,
@@ -486,17 +486,17 @@ def _build_request(
486486
) -> httpx.Request:
487487
if log.isEnabledFor(logging.DEBUG):
488488
log.debug(
489-
"Request options: %s",
490-
model_dump(
491-
options,
492-
exclude_unset=True,
493-
# Pydantic v1 can't dump every type we support in content, so we exclude it for now.
494-
exclude={
495-
"content",
496-
}
497-
if PYDANTIC_V1
498-
else {},
499-
),
489+
"Request options",
490+
# model_dump(
491+
# options,
492+
# exclude_unset=True,
493+
# # Pydantic v1 can't dump every type we support in content, so we exclude it for now.
494+
# exclude={
495+
# "content",
496+
# }
497+
# if PYDANTIC_V1
498+
# else {},
499+
# ),
500500
)
501501
kwargs: dict[str, Any] = {}
502502

0 commit comments

Comments
 (0)