From 810a87718dfc385c7632ab73a862d6d232e12d15 Mon Sep 17 00:00:00 2001 From: mezzode Date: Fri, 18 Oct 2019 13:42:57 -0700 Subject: [PATCH] Fix incorrect field name in GameTime docstring --- src/galaxy/api/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/galaxy/api/types.py b/src/galaxy/api/types.py index c2c0a1b..4ba4c76 100644 --- a/src/galaxy/api/types.py +++ b/src/galaxy/api/types.py @@ -169,7 +169,7 @@ class GameTime: :param game_id: id of the related game :param time_played: the total time spent in the game in **minutes** - :param last_time_played: last time the game was played (**unix timestamp**) + :param last_played_time: last time the game was played (**unix timestamp**) """ game_id: str time_played: Optional[int]