style: autopep8

Bug: 1468273
Reviewed-by: ted
MozReview-Commit-ID: 8j8EU3E08GP
This commit is contained in:
Sylvestre Ledru 2018-06-10 14:13:44 +02:00 committed by Emilio Cobos Álvarez
parent b539ae7fe5
commit 498592ff61
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C
4 changed files with 12 additions and 7 deletions

View file

@ -21,7 +21,7 @@ PRELUDE = """
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/* Autogenerated file created by components/style/gecko/binding_tools/regen_atoms.py, DO NOT EDIT DIRECTLY */
"""[1:]
"""[1:] # NOQA: E501
def gnu_symbolify(source, ident):
@ -57,7 +57,7 @@ class CSSPseudoElementsAtomSource:
class CSSAnonBoxesAtomSource:
PATTERN = re.compile('^(CSS_ANON_BOX|CSS_NON_INHERITING_ANON_BOX|CSS_WRAPPER_ANON_BOX)\(([^,]*),[^"]*"([^"]*)"\)',
PATTERN = re.compile('^(CSS_ANON_BOX|CSS_NON_INHERITING_ANON_BOX|CSS_WRAPPER_ANON_BOX)\(([^,]*),[^"]*"([^"]*)"\)', # NOQA: E501
re.MULTILINE)
FILE = "include/nsCSSAnonBoxList.h"
CLASS = "nsCSSAnonBoxes"