Skip to content

Commit

Permalink
Fix(clr_transform_cli): make columns optional parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
msorvoja committed Nov 18, 2024
1 parent 1e61ce9 commit b0c5659
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eis_toolkit/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -3093,7 +3093,7 @@ def inverse_alr_transform_cli(
def clr_transform_cli(
input_vector: INPUT_FILE_OPTION,
output_vector: OUTPUT_FILE_OPTION,
columns: Annotated[List[str], typer.Option()],
columns: Annotated[List[str], typer.Option()] = None,
):
"""Perform a centered logratio transformation on the data."""
from eis_toolkit.transformations.coda.clr import clr_transform
Expand Down

0 comments on commit b0c5659

Please sign in to comment.