summaryrefslogtreecommitdiff
path: root/entities/location.py
diff options
context:
space:
mode:
authorgilad_ilsar <gandismidas1>2016-09-22 14:13:48 +0300
committergilad_ilsar <gandismidas1>2016-09-22 14:13:48 +0300
commite24a4199fc75f9939c488c46aea3d8ff745a6ba8 (patch)
tree689fb682e26da9c25de272b33c23493c060f3193 /entities/location.py
parentcc9c0e57d5a23be30a9d0ad5a97acaa01019b573 (diff)
updates
Diffstat (limited to 'entities/location.py')
-rw-r--r--entities/location.py3
1 files changed, 2 insertions, 1 deletions
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)