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:
parent
0954975374
commit
db4091f41f
1 changed files with 3 additions and 1 deletions
4
main.py
4
main.py
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue