From e24a4199fc75f9939c488c46aea3d8ff745a6ba8 Mon Sep 17 00:00:00 2001 From: gilad_ilsar Date: Thu, 22 Sep 2016 14:13:48 +0300 Subject: updates --- entities/location.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'entities/location.py') diff --git a/entities/location.py b/entities/location.py index cd1ca01..07ef7ff 100644 --- a/entities/location.py +++ b/entities/location.py @@ -2,10 +2,11 @@ from entities.basic_entity import BasicEntity class Location(BasicEntity): - def __init__(self, name, types_of_place, name_in_langs): + def __init__(self, name, types_of_place, name_in_langs, comments_list): self.name = name self.types_of_place = types_of_place self.name_in_langs = name_in_langs + self.comments_list = comments_list def print_entity(self): print("Name = " + self.name) -- cgit v1.2.3