original file

This commit is contained in:
Esteban Mackay Q. 2024-06-10 19:18:26 -05:00
parent b36a0fe013
commit e686014ae5
1 changed files with 2 additions and 3 deletions

View File

@ -21,8 +21,7 @@
This is a web dashboard for the GPS/Data application. This is a web dashboard for the GPS/Data application.
''' '''
from flask import Flask, render_template, request, Response from flask import Flask, render_template, request, Response, Markup
from markupsafe import Markup
import ast, os import ast, os
#from dashboard_settings import * #from dashboard_settings import *
import folium import folium
@ -762,4 +761,4 @@ if __name__ == '__main__':
user_settings_file = parser.get('GPS_DATA', 'USER_SETTINGS_FILE') user_settings_file = parser.get('GPS_DATA', 'USER_SETTINGS_FILE')
######################## ########################
app.run(debug = True, port=dash_port, host=dash_host) app.run(debug = True, port=dash_port, host=dash_host)