Skip to content

Commit

Permalink
Fix pylint unnecessary-comprehension warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ekohl committed Sep 8, 2023
1 parent 8680d37 commit ab39227
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci-jobs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def get_pass(name):
return None, {}

password = lines[0]
extras = {key: value for key, value in parse_pass_lines(lines[1:])}
extras = dict(parse_pass_lines(lines[1:]))
return password, extras


Expand Down

0 comments on commit ab39227

Please sign in to comment.