Skip to content

Commit a2f9b66

Browse files
authored
Merge pull request #29395 from apple/theblixguy-patch-1
Fix python linting
2 parents 0c5f1ee + 61f4731 commit a2f9b66

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

utils/analyze_code_size.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,10 @@ def __init__(self):
8787
self.category_matching = [
8888
['Objective-C function', re.compile(r'.*[+-]\[')],
8989
['C++', re.compile(r'_+swift')],
90-
['Generic specialization of stdlib', re.compile(r'.*generic specialization.* of Swift\.')],
91-
['Generic specialization', re.compile(r'.*generic specialization')],
90+
['Generic specialization of stdlib',
91+
re.compile(r'.*generic specialization.* of Swift\.')],
92+
['Generic specialization',
93+
re.compile(r'.*generic specialization')],
9294
['Merged function', re.compile(r'merged ')],
9395
['Key path', re.compile(r'key path')],
9496
['Function signature specialization',

0 commit comments

Comments
 (0)