Adding initial walking time and identifier to the information
This commit is contained in:
parent
ce632c795d
commit
47f7b2b672
2 changed files with 8 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue