Skip to content

Commit

Permalink
wip UI improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
huygensCortex committed Oct 15, 2023
1 parent 2984f90 commit bff8e59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/recommenderapp/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
Module for routing all calls from the frontend
"""

sys.path.append("../../")
from src.prediction_scripts.item_based import recommend_for_new_user
from utils import send_email_to_user, beautify_feedback_data
from flask_cors import CORS
from flask import Flask, jsonify, render_template, request
from search import Search
import sys
import json
sys.path.append("../../")
from src.prediction_scripts.item_based import recommend_for_new_user
# pylint: disable=wrong-import-position
# pylint: enable=wrong-import-position

Expand Down

0 comments on commit bff8e59

Please sign in to comment.