diff options
Diffstat (limited to 'gn3')
-rw-r--r-- | gn3/api/llm.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gn3/api/llm.py b/gn3/api/llm.py index c175168..e857365 100644 --- a/gn3/api/llm.py +++ b/gn3/api/llm.py @@ -78,8 +78,9 @@ def rating(task_id): results.get("weight", 0)) logging.debug("the user id %s", str(user_id)) - # get base name for sqlite - llm_path = os.path.join(os.path.dirname(os.current_app.config["AUTH_DB"]),"llm.db") + # get base name for sqlite + llm_path = os.path.join(os.path.dirname( + current_app.config["AUTH_DB"]), "llm.db") with db.connection(llm_path) as conn: cursor = conn.cursor() create_table = """CREATE TABLE IF NOT EXISTS Rating( |