Update configfiles.py: line too long fix

This commit is contained in:
lxhillwind 2017-10-26 02:04:09 +08:00 committed by GitHub
parent 048b792c6f
commit 4c7f6e5339

View File

@ -355,7 +355,8 @@ class ConfigPyWriter:
if normal_bindings:
yield self._line('# Bindings for normal mode')
for key, command in sorted(normal_bindings.items()):
yield self._line('config.bind({!r}, {!r})'.format(key, command))
yield self._line('config.bind({!r}, {!r})'.format(
key, command))
yield ''
for mode, mode_bindings in sorted(self._bindings.items()):