Skip to content

Commit dab3f26

Browse files
committed
darker code formatter errors
1 parent 7956172 commit dab3f26

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mlir/utils/generate-test-checks.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -228,9 +228,9 @@ def process_attribute_references(line, attribute_namer):
228228
for component in components:
229229
m = ATTR_RE.match(component)
230230
# Only use attribute alias if one exists.
231-
if m and attribute_namer.get_name(m.group(1)) != '?':
232-
output_line += '#[[' + attribute_namer.get_name(m.group(1)) + ']]'
233-
output_line += component[len(m.group()):]
231+
if m and attribute_namer.get_name(m.group(1)) != "?":
232+
output_line += "#[[" + attribute_namer.get_name(m.group(1)) + "]]"
233+
output_line += component[len(m.group()) :]
234234
else:
235235
output_line += component
236236
return output_line

0 commit comments

Comments
 (0)