# HG changeset patch # User Sean Farley # Date 1472595744 25200 # Node ID aa3b6cfdf4932f41f91d15ab6a3f621a6b915a5a # Parent c817efec4afc43a98a5a594443b4182ca40b6bc9 flake8: fix E301 style diff -r c817efec4afc -r aa3b6cfdf493 hgext3rd/topic/__init__.py --- a/hgext3rd/topic/__init__.py Tue Aug 30 15:18:43 2016 -0700 +++ b/hgext3rd/topic/__init__.py Tue Aug 30 15:22:24 2016 -0700 @@ -118,6 +118,7 @@ orig = repo.__class__ if not isinstance(repo, localrepo.localrepository): return # this can be a peer in the ssh case (puzzling) + class topicrepo(repo.__class__): def _restrictcapabilities(self, caps): diff -r c817efec4afc -r aa3b6cfdf493 setup.cfg --- a/setup.cfg Tue Aug 30 15:18:43 2016 -0700 +++ b/setup.cfg Tue Aug 30 15:22:24 2016 -0700 @@ -1,2 +1,2 @@ [flake8] -ignore = E261, E266, E302, E129, E731, E124, E713, E301, E501, E123, W503 +ignore = E261, E266, E302, E129, E731, E124, E713, E501, E123, W503