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