@@ -182,7 +182,6 @@ def __init__(
182182 enable_console_log_capture : bool = True ,
183183 runtime_namespace : Optional [str ] = None ,
184184 source_tracking_config : Optional [SourceTrackingConfig ] = SourceTrackingConfig (),
185- inherit_configs : bool = True ,
186185 ** kwargs : Any ,
187186 ) -> None :
188187 """
@@ -217,7 +216,6 @@ def __init__(
217216 runtime_namespace: Attribute path prefix for the captured logs. If not provided, defaults to "runtime".
218217 source_tracking_config: Change or disable the logging of source code and Git information. To specify what
219218 information to log, pass a `SourceTrackingConfig` object. To disable logging, set to `None`.
220- inherit_configs:
221219 """
222220
223221 if run_id is None :
@@ -400,7 +398,6 @@ def __init__(
400398 experiment_name = experiment_name ,
401399 fork_run_id = fork_run_id ,
402400 fork_step = fork_step ,
403- inherit_configs = inherit_configs ,
404401 )
405402 self ._write_source_tracking_attributes (source_tracking_config )
406403
@@ -539,7 +536,6 @@ def _create_run(
539536 experiment_name : Optional [str ],
540537 fork_run_id : Optional [str ],
541538 fork_step : Optional [Union [int , float ]],
542- inherit_configs : bool ,
543539 ) -> None :
544540 if self ._operations_repo is None :
545541 logger .debug ("Run is in mode that doesn't support creating runs." )
@@ -558,7 +554,6 @@ def _create_run(
558554 fork_point = fork_point ,
559555 experiment_id = experiment_name ,
560556 creation_time = None if creation_time is None else datetime_to_proto (creation_time ),
561- inherit_configs = inherit_configs ,
562557 )
563558
564559 self ._operations_repo .save_create_run (create_run )
0 commit comments