Skip to content

Commit

Permalink
Reverted import changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jwngr committed Jun 19, 2024
1 parent e535e43 commit 4ddcce1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions sdow/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
import os.path
import sqlite3

import helpers as helpers
from breadth_first_search import breadth_first_search
import sdow.helpers as helpers
from sdow.breadth_first_search import breadth_first_search


class Database(object):
Expand Down
1 change: 0 additions & 1 deletion sdow/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Helper classes and methods.
"""

import logging
import requests


Expand Down
4 changes: 2 additions & 2 deletions sdow/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
from flask_compress import Compress
from flask import Flask, request, jsonify

from database import Database
from helpers import InvalidRequest, fetch_wikipedia_pages_info
from sdow.database import Database
from sdow.helpers import InvalidRequest, fetch_wikipedia_pages_info


# Connect to the SDOW database.
Expand Down

0 comments on commit 4ddcce1

Please sign in to comment.