mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
updated property class fixing bug with pulling out uprn
This commit is contained in:
parent
227cbcce2d
commit
0d7479d96c
1 changed files with 1 additions and 1 deletions
|
|
@ -58,7 +58,7 @@ class Property(Definitions):
|
|||
self.full_sap_epc = full_sap_epc
|
||||
self.property_dimensions = None
|
||||
|
||||
self.uprn = None if data is not None else data["uprn"]
|
||||
self.uprn = None if data is None else data["uprn"]
|
||||
|
||||
self.in_conservation_area, self.is_listed, self.is_heritage = None, None, None
|
||||
self.restricted_measures = False
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue