(self, app_name)
| 240 | f.write(manifest_data) |
| 241 | |
| 242 | def get_game_meta(self, app_name): |
| 243 | if _meta := self._game_metadata.get(app_name, None): |
| 244 | return Game.from_json(_meta) |
| 245 | return None |
| 246 | |
| 247 | def set_game_meta(self, app_name, meta): |
| 248 | json_meta = meta.__dict__ |
no test coverage detected