Make code more pep8 compliant
This commit is contained in:
parent
c576888da5
commit
c2ed73bafc
|
@ -71,4 +71,5 @@ class MastodonBot(Bot):
|
||||||
try:
|
try:
|
||||||
m.toot(text)
|
m.toot(text)
|
||||||
except Exception:
|
except Exception:
|
||||||
logger.error('Error tooting: ' + user.get_city() + ': ' + report.id, exc_info=True)
|
logger.error('Error tooting: ' + user.get_city() + ': ' +
|
||||||
|
report.id, exc_info=True)
|
||||||
|
|
|
@ -34,7 +34,8 @@ class TelegramBot(Bot):
|
||||||
# TODO: /help message should be set in frontend
|
# TODO: /help message should be set in frontend
|
||||||
else:
|
else:
|
||||||
reports.append(Report(update.message.sender.username, self,
|
reports.append(Report(update.message.sender.username, self,
|
||||||
update.message.text, None, update.message.date))
|
update.message.text, None,
|
||||||
|
update.message.date))
|
||||||
return reports
|
return reports
|
||||||
|
|
||||||
def post(self, user, report):
|
def post(self, user, report):
|
||||||
|
|
|
@ -145,6 +145,7 @@ def update_mail_md(user):
|
||||||
user.set_mail_md(request.forms['mail_md'])
|
user.set_mail_md(request.forms['mail_md'])
|
||||||
return user.state()
|
return user.state()
|
||||||
|
|
||||||
|
|
||||||
@post('/settings/goodlist')
|
@post('/settings/goodlist')
|
||||||
@view('template/settings.tpl')
|
@view('template/settings.tpl')
|
||||||
def update_trigger_patterns(user):
|
def update_trigger_patterns(user):
|
||||||
|
|
Loading…
Reference in a new issue