# HG changeset patch # User Sean Farley # Date 1472595305 25200 # Node ID 093af1c7d58d05f4884c6b3e7246d6ac6cb119de # Parent 410b7153480ae5d5f2bb45447ef93718cb0dd188 flake8: fix E222 style diff --git a/hgext3rd/topic/destination.py b/hgext3rd/topic/destination.py --- a/hgext3rd/topic/destination.py +++ b/hgext3rd/topic/destination.py @@ -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) diff --git a/setup.cfg b/setup.cfg --- a/setup.cfg +++ b/setup.cfg @@ -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