flake8: fix E301 style
authorSean Farley <sean@farley.io>
Tue, 30 Aug 2016 15:22:24 -0700
changeset 2007 aa3b6cfdf493
parent 2006 c817efec4afc
child 2008 e3ddd696394f
flake8: fix E301 style
hgext3rd/topic/__init__.py
setup.cfg
--- 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