Core: some typing and docs in various parts of the interface (#1060)

* some typing and docs in various parts of the interface

* fix whitespace in docstring

Co-authored-by: black-sliver <[email protected]>

* suggested changes from discussion

* remove redundant import

* adjust type for json messages

* for options module detection:
 module.lower().endswith("options")

Co-authored-by: black-sliver <[email protected]>
This commit is contained in:
Doug Hoskisson
2022-09-28 23:54:10 +02:00
committed by GitHub
co-authored by black-sliver
parent 8bc8b412a3
commit c96b6d7b95
12 changed files with 96 additions and 84 deletions
+4 -1
View File
@@ -64,7 +64,10 @@ def create():
for game_name, world in AutoWorldRegister.world_types.items():
all_options = {**Options.per_game_common_options, **world.option_definitions}
all_options: typing.Dict[str, Options.AssembleOptions] = {
**Options.per_game_common_options,
**world.option_definitions
}
with open(local_path("WebHostLib", "templates", "options.yaml")) as f:
file_data = f.read()
res = Template(file_data).render(