flake8: fix E222 style
authorSean Farley <sean@farley.io>
Tue, 30 Aug 2016 15:15:05 -0700
changeset 2005 093af1c7d58d
parent 2004 410b7153480a
child 2006 c817efec4afc
flake8: fix E222 style
hgext3rd/topic/destination.py
setup.cfg
--- a/hgext3rd/topic/destination.py	Tue Aug 30 14:10:16 2016 -0700
+++ b/hgext3rd/topic/destination.py	Tue Aug 30 15:15:05 2016 -0700
@@ -19,7 +19,7 @@
     else:
         # XXX: using only the max here is flacky. That code should eventually
         # be updated to take care of the whole sourceset.
-       p1 =  repo[max(sourceset)]
+       p1 = repo[max(sourceset)]
     top = p1.topic()
     if top:
         revs = repo.revs('topic(%s) - obsolete()', top)
--- a/setup.cfg	Tue Aug 30 14:10:16 2016 -0700
+++ b/setup.cfg	Tue Aug 30 15:15:05 2016 -0700
@@ -1,2 +1,2 @@
 [flake8]
-ignore = E261, E266, E302, E129, E731, E124, E713, E301, E501, E111, E123, E222, W503
+ignore = E261, E266, E302, E129, E731, E124, E713, E301, E501, E111, E123, W503