changeset 2007:aa3b6cfdf493

flake8: fix E301 style
author Sean Farley <sean@farley.io>
date Tue, 30 Aug 2016 15:22:24 -0700
parents c817efec4afc
children e3ddd696394f
files hgext3rd/topic/__init__.py setup.cfg
diffstat 2 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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):
--- 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