Use Black stable to format python code
[babeltrace.git] / tests / utils / python / tap / directive.py
index 27e8bb2eb98a457284a1fb0cf7ab09826266a9fc..6be71bbb7ff6dd48883010caea6107e2d717cf06 100644 (file)
@@ -12,12 +12,14 @@ class Directive(object):
         r"""^SKIP\S*
             (?P<whitespace>\s*) # Optional whitespace.
             (?P<reason>.*)      # Slurp up the rest.""",
-        re.IGNORECASE | re.VERBOSE)
+        re.IGNORECASE | re.VERBOSE,
+    )
     todo_pattern = re.compile(
         r"""^TODO\b             # The directive name
             (?P<whitespace>\s*) # Immediately following must be whitespace.
             (?P<reason>.*)      # Slurp up the rest.""",
-        re.IGNORECASE | re.VERBOSE)
+        re.IGNORECASE | re.VERBOSE,
+    )
 
     def __init__(self, text):
         """Initialize the directive by parsing the text.
This page took 0.024228 seconds and 4 git commands to generate.