diff --git a/Options.py b/Options.py index a49591485e50..c889f859afd5 100644 --- a/Options.py +++ b/Options.py @@ -955,7 +955,7 @@ def verify(self, world: typing.Type[World], player_name: str, plando_options: "P def verify_keys(self) -> None: if self.valid_keys: - data = set([text.at for text in self]) + data = set(text.at for text in self) dataset = set(word.casefold() for word in data) if self.valid_keys_casefold else set(data) extra = dataset - self._valid_keys if extra: