Skip to content

Commit 3a4e392

Browse files
committed
docs
1 parent be42912 commit 3a4e392

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

src/hydra_zen/structured_configs/_implementations.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3236,7 +3236,7 @@ def kwargs_of(
32363236
zen_exclude: Union[
32373237
None, "Collection[Union[str, int]]", Callable[[str], bool]
32383238
] = ...,
3239-
**kwargs_for_target: T,
3239+
**kwarg_overrides: T,
32403240
) -> Type[Builds[Type[Dict[str, Any]]]]:
32413241
...
32423242

@@ -3249,7 +3249,7 @@ def kwargs_of(
32493249
zen_exclude: Union[
32503250
None, "Collection[Union[str, int]]", Callable[[str], bool]
32513251
] = None,
3252-
**kwargs_for_target: T,
3252+
**kwarg_overrides: T,
32533253
) -> Union[
32543254
Type[BuildsWithSig[Type[Dict[str, Any]], P]], Type[Builds[Type[Dict[str, Any]]]]
32553255
]:
@@ -3271,6 +3271,9 @@ def kwargs_of(
32713271
Specifies parameter names and/or indices, or a function for checking names,
32723272
to exclude those parameters from the config-creation process.
32733273
3274+
**kwarg_overrides : T
3275+
Named overrides for the parameters' default values.
3276+
32743277
Returns
32753278
-------
32763279
type[Builds[type[dict[str, Any]]]]
@@ -3326,7 +3329,7 @@ def kwargs_of(
33263329
populate_full_signature=True,
33273330
zen_exclude=zen_exclude,
33283331
zen_dataclass=zen_dataclass,
3329-
**kwargs_for_target, # type: ignore
3332+
**kwarg_overrides, # type: ignore
33303333
)
33313334

33323335

0 commit comments

Comments
 (0)