aboutsummaryrefslogtreecommitdiff
path: root/newspipe
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-11-20 15:34:45 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-11-20 15:34:45 +0100
commitc7c3b90cf25b28aa3cc15c29ac4c64391718d0b4 (patch)
tree5a17ee32c013e98e51484aea9c47e8ac93ee94fb /newspipe
parentuncomment Indexes (diff)
downloadnewspipe-c7c3b90cf25b28aa3cc15c29ac4c64391718d0b4.tar.gz
newspipe-c7c3b90cf25b28aa3cc15c29ac4c64391718d0b4.tar.bz2
newspipe-c7c3b90cf25b28aa3cc15c29ac4c64391718d0b4.zip
added missing import
Diffstat (limited to 'newspipe')
-rw-r--r--newspipe/models/article.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/newspipe/models/article.py b/newspipe/models/article.py
index 611f5cb1..af190053 100644
--- a/newspipe/models/article.py
+++ b/newspipe/models/article.py
@@ -28,6 +28,7 @@ __license__ = "GPLv3"
from datetime import datetime
+from sqlalchemy import Index
from sqlalchemy.ext.associationproxy import association_proxy
from newspipe.bootstrap import db
bgstack15