diff options
author | Kagami Sascha Rosylight <saschanaz@outlook.com> | 2020-06-21 03:34:22 +0200 |
---|---|---|
committer | Kagami Sascha Rosylight <saschanaz@outlook.com> | 2020-06-21 03:34:32 +0200 |
commit | d01648d637a350af0cb81470f956cc5edd18a9a4 (patch) | |
tree | 348d75fe9d3e63fd4bb8ff2506db6606a12e56fd /python/servo/mutation/mutator.py | |
parent | c953931621679f37fa31a1dc5f00ebb9f0c204e0 (diff) | |
download | servo-d01648d637a350af0cb81470f956cc5edd18a9a4.tar.gz servo-d01648d637a350af0cb81470f956cc5edd18a9a4.zip |
Fix remaining flake8 warnings
Diffstat (limited to 'python/servo/mutation/mutator.py')
-rw-r--r-- | python/servo/mutation/mutator.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/servo/mutation/mutator.py b/python/servo/mutation/mutator.py index 8018ddc6116..0f359cb5107 100644 --- a/python/servo/mutation/mutator.py +++ b/python/servo/mutation/mutator.py @@ -138,8 +138,8 @@ class DuplicateLine(Strategy): plus_equals_statement = r".+?\s\+\=\s.*" minus_equals_statement = r".+?\s\-\=\s.*" self._replace_strategy = { - 'regex': (append_statement + '|' + remove_statement + '|' + push_statement + - '|' + pop_statement + '|' + plus_equals_statement + '|' + minus_equals_statement), + 'regex': (append_statement + '|' + remove_statement + '|' + push_statement + + '|' + pop_statement + '|' + plus_equals_statement + '|' + minus_equals_statement), 'replaceString': r"\g<0>\n\g<0>", } |