From 25b850d8bb09994cf472517e56c799cebc9c8e11 Mon Sep 17 00:00:00 2001 From: Romuald Juchnowicz-Bierbasz Date: Tue, 16 Apr 2019 10:21:31 +0200 Subject: [PATCH] SDK-2760: Dlc list optional --- galaxy/api/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galaxy/api/types.py b/galaxy/api/types.py index be310d4..574d427 100644 --- a/galaxy/api/types.py +++ b/galaxy/api/types.py @@ -36,7 +36,7 @@ class Dlc(): class Game(): game_id: str game_title: str - dlcs: List[Dlc] + dlcs: Optional[List[Dlc]] license_info: LicenseInfo @dataclass