Adding initial walking time and identifier to the information

This commit is contained in:
Kadir 2024-03-25 20:47:31 +00:00
parent ce632c795d
commit 47f7b2b672
2 changed files with 8 additions and 1 deletions

View file

@ -11,7 +11,6 @@ _DATA_DIR = pathlib.Path('data/rs/')
class Listing():
identifier: int
_cached: Dict = None
@staticmethod
def get_all_listings() -> List['Listing']:
@ -187,6 +186,7 @@ class Listing():
def dict_nicely(self):
return {
'identifier': self.identifier,
'sqm_ocr': self.sqm_ocr,
'price': self.price,
'price_per_sqm': self.price_per_sqm,