fix indentation

This commit is contained in:
Jean-Paul Calderone 2019-06-19 12:08:32 -04:00
parent 756c21c251
commit fd9ae24149

View File

@ -707,12 +707,12 @@ class _Client(node.Node, pollmixin.PollMixin):
{u"name": plugin.name}, {u"name": plugin.name},
), ),
) )
for plugin for plugin
# The order is fairly arbitrary and it is not meant to convey # The order is fairly arbitrary and it is not meant to convey
# anything but providing *some* stable ordering makes the data a # anything but providing *some* stable ordering makes the data
# little easier to deal with (mainly in tests and when manually # a little easier to deal with (mainly in tests and when
# inspecting it). # manually inspecting it).
in sorted(plugins, key=lambda p: p.name) in sorted(plugins, key=lambda p: p.name)
), ),
) )