Fix mypy.

This commit is contained in:
Dan Albert 2020-10-30 16:43:19 -07:00
parent 9cdbef9faf
commit 611b6fc272

View File

@ -16,6 +16,7 @@ class FactionLoader:
@property
def factions(self) -> Dict[str, Faction]:
self.initialize()
assert self._factions is not None
return self._factions
def initialize(self) -> None: