Skip to content

Commit

Permalink
Fix unrelated lint reported by flake8
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Bargull <marcel.bargull@udo.edu>
  • Loading branch information
mbargull committed Nov 20, 2023
1 parent e733120 commit 0096f7a
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 [line + sep for line in lines]


def test_streaming():
Expand Down

0 comments on commit 0096f7a

Please sign in to comment.