Skip to content

Commit d25994b

Browse files
authored
Merge pull request swiftlang#63237 from glessard/python-linting
[gardening] change an ambiguous variable name
2 parents 976060e + 36d230e commit d25994b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/round-trip-syntax-test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class RoundTripTask(object):
7474
logging.error(self.stderr.decode('utf-8', errors='replace'))
7575
raise RuntimeError()
7676

77-
contents = ''.join(map(lambda l: l.decode('utf-8', errors='replace'),
77+
contents = ''.join(map(lambda _: _.decode('utf-8', errors='replace'),
7878
open(self.input_filename, 'rb').readlines()))
7979
stdout_contents = self.stdout.decode('utf-8', errors='replace')
8080

0 commit comments

Comments
 (0)