Skip to content

Commit

Permalink
Blacken conftest.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gilch committed Nov 30, 2019
1 parent b99d987 commit c986d93
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion conftest.py
Expand Up @@ -60,7 +60,10 @@ def evaluate(self, example, parser=Parser()):

def norm_gensym_eq(compiled, python):
"""The special gensym suffix ``xAUTO..._`` will match any number."""
return re.fullmatch(re.sub(r'xAUTO\\\.\\\.\\\._', r'xAUTO\\d+_', re.escape(python)), compiled)
return re.fullmatch(
re.sub(r"xAUTO\\\.\\\.\\\._", r"xAUTO\\d+_", re.escape(python)), compiled
)


class Globs(Container):
def __init__(self, *globs):
Expand Down

0 comments on commit c986d93

Please sign in to comment.