(self, update_assets=True, platform='Windows')
| 396 | return self.lgd.get_game_meta(app_name) |
| 397 | |
| 398 | def get_game_list(self, update_assets=True, platform='Windows') -> List[Game]: |
| 399 | return self.get_game_and_dlc_list(update_assets=update_assets, platform=platform)[0] |
| 400 | |
| 401 | def get_game_and_dlc_list(self, update_assets=True, platform='Windows', |
| 402 | force_refresh=False, skip_ue=True) -> (List[Game], Dict[str, List[Game]]): |
no test coverage detected