Skip to content

Commit

Permalink
Style(web/app): Use relative import
Browse files Browse the repository at this point in the history
  • Loading branch information
phdru committed Dec 17, 2023
1 parent 7657209 commit 10c9306
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions m_librarian/web/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
from sqlobject.sqlbuilder import CONCAT
from bottle import cheetah_view, redirect, request, route, static_file

from m_librarian.config import get_config
from m_librarian.db import Author, Book
from m_librarian.download import download
from m_librarian.search import search_authors, search_books
from ..config import get_config
from ..db import Author, Book
from ..download import download
from ..search import search_authors, search_books


@route('/')
Expand Down

0 comments on commit 10c9306

Please sign in to comment.