Spaces:
Runtime error
Runtime error
Commit
·
7e5b631
1
Parent(s):
4dcdea9
Update app.py
Browse files
app.py
CHANGED
@@ -103,7 +103,7 @@ cols_order_set=['Address Input', 'sqFtFinished', 'totalSqFt', 'yearBuilt', 'pro
|
|
103 |
'url',
|
104 |
'Lat', 'Lon']
|
105 |
|
106 |
-
cols_order = list(set(
|
107 |
cols_other=[i for i in results.columns if i not in cols_order ]
|
108 |
|
109 |
try:
|
|
|
103 |
'url',
|
104 |
'Lat', 'Lon']
|
105 |
|
106 |
+
cols_order = list(set(cols_order_set).union(set(results.columns)))
|
107 |
cols_other=[i for i in results.columns if i not in cols_order ]
|
108 |
|
109 |
try:
|