Skip to content

Commit 58729df

Browse files
glessardedymtt
authored andcommitted
[5.8][gardening] change an ambiguous variable name
- lowercase-l trips some python lint configurations (cherry picked from commit 36d230e, #63237)
1 parent 3062a04 commit 58729df

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)