diff --git a/weather/api.py b/weather/api.py index 621000c..9ef3dff 100644 --- a/weather/api.py +++ b/weather/api.py @@ -10,12 +10,8 @@ bp = Blueprint('api', __name__) @bp.route('/api') def api(): db = get_db() - latest_period = dict(db.execute( - 'SELECT `id` FROM `reports` WHERE `type` = "hourly" ORDER BY `reported_at` DESC' - ).fetchone()) - current_conditions = dict(db.execute( - f"SELECT * FROM `periods` WHERE `report_id` = {latest_period['id']} LIMIT 1" + "SELECT * FROM `current_forecasts` ORDER BY `end_time` DESC LIMIT 1" ).fetchone()) return current_conditions