From 909ea9dc9967f76f46c729bf9216eda47d705fb6 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Sat, 21 May 2022 23:18:34 +0200 Subject: [PATCH] WebHost: fix plando options type error --- WebHostLib/check.py | 1 + 1 file changed, 1 insertion(+) diff --git a/WebHostLib/check.py b/WebHostLib/check.py index 46de51b8..9557e509 100644 --- a/WebHostLib/check.py +++ b/WebHostLib/check.py @@ -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():