Skip to content

Commit

Permalink
does this sate the linter?
Browse files Browse the repository at this point in the history
Signed-off-by: Rick Elrod <rick@elrod.me>
  • Loading branch information
relrod committed Dec 16, 2021
1 parent 0648dab commit 9700096
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def to_string(self) -> str:
"""Render the volume mount in a way that (docker|podman) understands."""
out = f"{self.src}:{self.dest}"
if self.options:
joined_opts = ",".join(o.value for o in self.options)
joined_opts = ",".join([o.value for o in self.options])
out += f":{joined_opts}"
return out

Expand Down

0 comments on commit 9700096

Please sign in to comment.