Fix lint
This commit is contained in:
parent
7e879c9312
commit
cbac8bb330
@ -34,7 +34,7 @@ import qutebrowser
|
|||||||
from qutebrowser.network import schemehandler, networkreply
|
from qutebrowser.network import schemehandler, networkreply
|
||||||
from qutebrowser.utils import (version, utils, jinja, log, message, docutils,
|
from qutebrowser.utils import (version, utils, jinja, log, message, docutils,
|
||||||
objreg)
|
objreg)
|
||||||
from qutebrowser.config import configtypes
|
from qutebrowser.config import configtypes, configdata
|
||||||
|
|
||||||
|
|
||||||
pyeval_output = ":pyeval was never called"
|
pyeval_output = ":pyeval was never called"
|
||||||
@ -165,10 +165,8 @@ def qute_help(win_id, request):
|
|||||||
return utils.read_file(path).encode('UTF-8', errors='xmlcharrefreplace')
|
return utils.read_file(path).encode('UTF-8', errors='xmlcharrefreplace')
|
||||||
|
|
||||||
|
|
||||||
def qute_settings(win_id, request):
|
def qute_settings(win_id, _request):
|
||||||
"""Handler for qute:settings. View/change qute configuration"""
|
"""Handler for qute:settings. View/change qute configuration"""
|
||||||
from qutebrowser.config import configdata
|
|
||||||
|
|
||||||
html = jinja.env.get_template('settings.html').render(
|
html = jinja.env.get_template('settings.html').render(
|
||||||
win_id=win_id, title='settings', config=configdata)
|
win_id=win_id, title='settings', config=configdata)
|
||||||
return html.encode('UTF-8', errors='xmlcharrefreplace')
|
return html.encode('UTF-8', errors='xmlcharrefreplace')
|
||||||
|
Loading…
Reference in New Issue
Block a user