Skip to content

Commit 6f1262f

Browse files
committed
test: Restore get_st_init_args func params
1 parent 168450c commit 6f1262f

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

tests/utils.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -522,12 +522,9 @@ async def __call__( # pylint: disable=invalid-overridden-method, useless-super-
522522

523523

524524
def get_st_init_args(
525-
recipe_list: List[Any], extra_config: Optional[Dict[str, Any]] = None
525+
recipe_list: List[Any]
526526
) -> Dict[str, Any]:
527-
if extra_config is None:
528-
extra_config = {}
529-
530-
return {**st_init_common_args, "recipe_list": recipe_list, **extra_config}
527+
return {**st_init_common_args, "recipe_list": recipe_list}
531528

532529

533530
def is_subset(dict1: Any, dict2: Any) -> bool:

0 commit comments

Comments
 (0)