diff --git a/flint/archive.py b/flint/archive.py index 92c6d243..51a7ccae 100644 --- a/flint/archive.py +++ b/flint/archive.py @@ -183,7 +183,7 @@ def get_archive_options_from_yaml(strategy_yaml_path: Path) -> Dict[str, Any]: Dict[str, Any]: Loaded options for ArchiveOptions """ archive_options = get_options_from_strategy( - strategy=strategy_yaml_path, mode="archive", round="initial" + strategy=strategy_yaml_path, mode="archive", round_info="initial" ) logger.info(f"{archive_options=}") diff --git a/flint/configuration.py b/flint/configuration.py index 8511a9fd..78e7ed37 100644 --- a/flint/configuration.py +++ b/flint/configuration.py @@ -380,7 +380,7 @@ def wrapper( # Keep the function name and docs correct wrapper.__name__ = fn.__name__ wrapper.__doc__ = fn.__doc__ - return wrapper + return wrapper # type: ignore return _wrapper