Skip to content

Commit

Permalink
Use map so we can set an origin name
Browse files Browse the repository at this point in the history
  • Loading branch information
Silarn committed Sep 5, 2023
1 parent fba8fd5 commit bff84ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions basic_game.py
Original file line number Diff line number Diff line change
Expand Up @@ -613,8 +613,8 @@ def dataDirectory(self) -> QDir:
self.gameDirectory().absoluteFilePath(self._mappings.dataDirectory.get())
)

def secondaryDataDirectories(self) -> List[QDir]:
return []
def secondaryDataDirectories(self) -> Dict[str, QDir]:
return {}

def setGamePath(self, path: Union[Path, str]):
self._gamePath = str(path)
Expand Down

0 comments on commit bff84ec

Please sign in to comment.