aboutsummaryrefslogtreecommitdiff
path: root/newspipe/models/category.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-10 22:29:19 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-10 22:29:19 +0100
commit7a08a6b548e39a477aaf49b6213a2e06a0f3498a (patch)
tree775895d433100fbbe0efdb6759a2b14e5a999d30 /newspipe/models/category.py
parentremoved unused variable (diff)
downloadnewspipe-7a08a6b548e39a477aaf49b6213a2e06a0f3498a.tar.gz
newspipe-7a08a6b548e39a477aaf49b6213a2e06a0f3498a.tar.bz2
newspipe-7a08a6b548e39a477aaf49b6213a2e06a0f3498a.zip
cleaned imports
Diffstat (limited to 'newspipe/models/category.py')
-rw-r--r--newspipe/models/category.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/newspipe/models/category.py b/newspipe/models/category.py
index 3abb6717..a1e1c806 100644
--- a/newspipe/models/category.py
+++ b/newspipe/models/category.py
@@ -1,8 +1,9 @@
#! /usr/bin/env python
# -*- coding: utf-8 -*-
-from newspipe.bootstrap import db
from sqlalchemy import Index
+
+from newspipe.bootstrap import db
from newspipe.models.right_mixin import RightMixin
bgstack15