mattritchey commited on
Commit
7e5b631
·
1 Parent(s): 4dcdea9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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([item for sublist in results.columns for item in cols_order_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: