Skip to content

Commit 0e89eb4

Browse files
committed
no need in map
1 parent 2662883 commit 0e89eb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pygithubactions/core/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def get_multiline_input(
129129
if not trim_whitespace:
130130
return inputs_list
131131

132-
return list(map(lambda i: i.strip(), inputs_list))
132+
return [i.strip() for i in inputs_list]
133133

134134

135135
def set_output(name: str, value: Any) -> None:

0 commit comments

Comments
 (0)