Spaces:
Sleeping
Sleeping
Update imports_utils.py
Browse files- imports_utils.py +3 -3
imports_utils.py
CHANGED
@@ -182,7 +182,7 @@ def fetchDomainMapper (luAttributePages):
|
|
182 |
lu_domain_mapper ={}
|
183 |
subdomains_unique = []
|
184 |
|
185 |
-
for page in
|
186 |
value_landuse = get_property_value(page, landuseColumnName)
|
187 |
value_subdomain = get_property_value(page, subdomainColumnName)
|
188 |
if value_subdomain and value_landuse:
|
@@ -195,12 +195,12 @@ def fetchDomainMapper (luAttributePages):
|
|
195 |
|
196 |
|
197 |
|
198 |
-
def fetchSubdomainMapper (
|
199 |
|
200 |
attribute_mapper ={}
|
201 |
domains_unique = []
|
202 |
|
203 |
-
for page in
|
204 |
subdomain = get_property_value(page, subdomainColumnName)
|
205 |
sqm_per_employee = get_property_value(page, sqmPerEmployeeColumnName)
|
206 |
thresholds = get_property_value(page, thresholdsColumnName)
|
|
|
182 |
lu_domain_mapper ={}
|
183 |
subdomains_unique = []
|
184 |
|
185 |
+
for page in luAttributePages:
|
186 |
value_landuse = get_property_value(page, landuseColumnName)
|
187 |
value_subdomain = get_property_value(page, subdomainColumnName)
|
188 |
if value_subdomain and value_landuse:
|
|
|
195 |
|
196 |
|
197 |
|
198 |
+
def fetchSubdomainMapper (livabilityAttributePages):
|
199 |
|
200 |
attribute_mapper ={}
|
201 |
domains_unique = []
|
202 |
|
203 |
+
for page in livabilityAttributePages:
|
204 |
subdomain = get_property_value(page, subdomainColumnName)
|
205 |
sqm_per_employee = get_property_value(page, sqmPerEmployeeColumnName)
|
206 |
thresholds = get_property_value(page, thresholdsColumnName)
|