aboutsummaryrefslogtreecommitdiff
path: root/src/web/models/article.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-04-21 23:09:42 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-04-21 23:09:42 +0200
commit0fa1a1c363aaf934a9ce80ee8b255cf8b840901e (patch)
tree22bea067f592a988dac3f3028c17eeed74f85f6f /src/web/models/article.py
parentMerge branch 'master' into bookmark (diff)
downloadnewspipe-0fa1a1c363aaf934a9ce80ee8b255cf8b840901e.tar.gz
newspipe-0fa1a1c363aaf934a9ce80ee8b255cf8b840901e.tar.bz2
newspipe-0fa1a1c363aaf934a9ce80ee8b255cf8b840901e.zip
We will finally have a table for tags of articles and tags of bookmarks.
Diffstat (limited to 'src/web/models/article.py')
-rw-r--r--src/web/models/article.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/web/models/article.py b/src/web/models/article.py
index 6245b10e..f5ef619e 100644
--- a/src/web/models/article.py
+++ b/src/web/models/article.py
@@ -34,8 +34,6 @@ from sqlalchemy.ext.associationproxy import association_proxy
from web.models.right_mixin import RightMixin
-
-
class Article(db.Model, RightMixin):
"Represent an article from a feed."
id = db.Column(db.Integer(), primary_key=True)
bgstack15