Make pyright shut up about dicts

Apparently if you create a dict with pre-populated data, pyright infers
the dict's types for type checking purposes, and this can be wrong here
where my data dicts are massive sprawling affairs of dynamic info.

The right thing to do is probably turn this into a class, but for now
I'll just split the dicts pyright complains about up differently.
This commit is contained in:
Trysdyn Black 2024-10-06 18:59:19 -07:00
parent 0954975374
commit db4091f41f

View file

@ -10,7 +10,9 @@ import sys
def parse_MONSTERS(data):
result = {}
for m_text in data.split("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"):
info = {"stats": {}, "spells": {}}
info = {}
info["stats"] = {}
info["spells"] = {}
name = "NULL"
for line in m_text.split("\n"):
# Name and level