From 90746c51d96cdbd0a8c90bfe7d950f12f8c0cbd4 Mon Sep 17 00:00:00 2001 From: Marcin Kostrzewski Date: Sat, 16 May 2020 09:51:04 +0200 Subject: [PATCH] Added missing param hint in docstring --- src/entities/Pickupable.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/entities/Pickupable.py b/src/entities/Pickupable.py index 1767679..9399308 100644 --- a/src/entities/Pickupable.py +++ b/src/entities/Pickupable.py @@ -10,6 +10,7 @@ class Pickupable(Interactable): :param size: Size in px :param pos: Position tuple of (x,y) :param Statistics: Outcome of the interaction + :param classifier: Type of the entity (food, water, rest) """ super().__init__(texture, size, pos, Statistics, classifier) self.is_pickupable = True