Skip to content

Commit

Permalink
change l to line
Browse files Browse the repository at this point in the history
  • Loading branch information
bkentropy committed Jun 14, 2024
1 parent 989031a commit 709d155
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion anaconda_project/internal/test/test_streaming_popen.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def detect_linesep(lines):

def add_lineseps(lines, sep=None):
sep = sep or os.linesep
return list(map(lambda l: l + sep, lines))
return list(map(lambda line: line + sep, lines))


def test_streaming():
Expand Down

0 comments on commit 709d155

Please sign in to comment.