Merge pull request #182 from sharkykh/fix-lint

Apply PEP8
This commit is contained in:
Johnny Ding 2017-05-24 23:40:42 -07:00 committed by GitHub
commit 5a19dae649
2 changed files with 2 additions and 3 deletions

View File

@ -99,8 +99,8 @@ class Torrent(db.Model):
cascade="all, delete-orphan", back_populates='torrent')
stats = db.relationship('Statistic', uselist=False,
cascade="all, delete-orphan", back_populates='torrent', lazy='joined')
trackers = db.relationship('TorrentTrackers', uselist=True,
cascade="all, delete-orphan", lazy='joined', order_by='TorrentTrackers.order')
trackers = db.relationship('TorrentTrackers', uselist=True, cascade="all, delete-orphan",
lazy='joined', order_by='TorrentTrackers.order')
comments = db.relationship('Comment', uselist=True,
cascade="all, delete-orphan")

View File

@ -213,7 +213,6 @@ def home(rss):
'per_page': results_per_page
}
if flask.g.user:
query_args['logged_in_user'] = flask.g.user
if flask.g.user.is_moderator: # God mode