summaryrefslogtreecommitdiff
path: root/entities/location.py
diff options
context:
space:
mode:
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)