Skip to content

Commit

Permalink
Improve readability of combine function
Browse files Browse the repository at this point in the history
  • Loading branch information
hnformentin committed Mar 8, 2023
1 parent c616634 commit 5f5a318
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions komodo/release_transpiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,10 +213,11 @@ def main():
)
matrix_parser.add_argument(
"--py_coords",
help="""Comma delimitated list of python versions to be combined.
help="""Comma delimitated list of python versions to be combined,
for example, "3.6, 3.8".
If None, the release files in release-folder will be used to imply
the versions to combine.""",
type=lambda s: re.split(",", s),
type=lambda s: re.split(",", s.replace(" ", "")),
required=False,
default=None,
)
Expand Down

0 comments on commit 5f5a318

Please sign in to comment.