Skip to content

Commit

Permalink
squashed a few bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
tgalvin committed Oct 11, 2024
1 parent 2c05cf7 commit 0c495be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion flint/archive.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=}")
Expand Down
2 changes: 1 addition & 1 deletion flint/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 0c495be

Please sign in to comment.