WebHost: fix plando options type error

This commit is contained in:
Fabian Dill 2022-05-21 23:18:34 +02:00 committed by KonoTyran
parent 86013328d6
commit 909ea9dc99
1 changed files with 1 additions and 0 deletions

View File

@ -63,6 +63,7 @@ def get_yaml_data(file) -> Union[Dict[str, str], str]:
def roll_options(options: Dict[str, Union[dict, str]], plando_options: set = {"bosses", "items", "connections", "texts"}) -> Tuple[Dict[str, Union[str, bool]], Dict[str, dict]]:
plando_options = set(plando_options)
results = {}
rolled_results = {}
for filename, text in options.items():