@@ -31,7 +31,7 @@ class NoPreferredConfigError(InvalidConfigError):
31
31
def import_by_path (path : str , default_module : ModuleType | None = None ) -> Any : # noqa: ANN401
32
32
"""
33
33
Retrieves and returns an object based on the string in the format of "module.submodule:object_name".
34
- If the first part is ommited , the default module is used.
34
+ If the first part is omitted , the default module is used.
35
35
36
36
Args:
37
37
path: A string representing the path to the object. This can either be a
@@ -63,7 +63,7 @@ def import_by_path(path: str, default_module: ModuleType | None = None) -> Any:
63
63
raise InvalidConfigError (f"{ path } not found in module { default_module } " ) from err
64
64
65
65
66
- class ObjectContructionConfig (BaseModel ):
66
+ class ObjectConstructionConfig (BaseModel ):
67
67
"""
68
68
A model for object construction configuration.
69
69
"""
@@ -87,7 +87,7 @@ class WithConstructionConfig(abc.ABC):
87
87
configuration_key : ClassVar [str ]
88
88
89
89
@classmethod
90
- def subclass_from_config (cls , config : ObjectContructionConfig ) -> Self :
90
+ def subclass_from_config (cls , config : ObjectConstructionConfig ) -> Self :
91
91
"""
92
92
Initializes the class with the provided configuration. May return a subclass of the class,
93
93
if requested by the configuration.
@@ -151,7 +151,7 @@ def preferred_subclass(
151
151
if yaml_path_override :
152
152
preferences = get_config_from_yaml (yaml_path_override )
153
153
if type_config := preferences .get (cls .configuration_key ):
154
- return cls .subclass_from_config (ObjectContructionConfig .model_validate (type_config ))
154
+ return cls .subclass_from_config (ObjectConstructionConfig .model_validate (type_config ))
155
155
156
156
if factory_path_override :
157
157
return cls .subclass_from_factory (factory_path_override )
@@ -160,7 +160,7 @@ def preferred_subclass(
160
160
return cls .subclass_from_factory (preferred_factory )
161
161
162
162
if preferred_config := config .preferred_instances_config .get (cls .configuration_key ):
163
- return cls .subclass_from_config (ObjectContructionConfig .model_validate (preferred_config ))
163
+ return cls .subclass_from_config (ObjectConstructionConfig .model_validate (preferred_config ))
164
164
165
165
raise NoPreferredConfigError (f"Could not find preferred factory or configuration for { cls .configuration_key } " )
166
166
@@ -195,7 +195,7 @@ def __init__(self, default_options: OptionsT | None = None) -> None:
195
195
self .default_options : OptionsT = default_options or self .options_cls ()
196
196
197
197
@classmethod
198
- def from_config (cls , config : dict [str , Any ]) -> ConfigurableComponent :
198
+ def from_config (cls , config : dict [str , Any ]) -> Self :
199
199
"""
200
200
Initializes the class with the provided configuration.
201
201
0 commit comments