Add mypy; Consolidate catalog classes

This commit is contained in:
Andrew Miner
2025-10-08 21:55:10 -06:00
parent b96a456b03
commit 52a3fdc328
74 changed files with 1169 additions and 784 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ class MineralReport(Report):
super().__init__("minerals.md", pack)
def build(self):
for mineral in self.pack.world.minerals.all():
for mineral in self.pack.world.minerals:
self.line(f"# Mineral: {mineral.name}")
self.line()