Skip to content

Commit

Permalink
Fix typo in keyword argument
Browse files Browse the repository at this point in the history
  • Loading branch information
endast committed Oct 18, 2023
1 parent c8006a7 commit e65e2c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deeprvat/annotations/annotations.py
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ def cli():
@click.argument("deepsea-file", type=click.Path(exists=True))
@click.argument("pca-object", type=click.Path())
@click.argument("out-dir", type=click.Path(exists=True))
def deepsea_pca(n_components: int, deepsea_file: str, pca_onject: str, out_dir: str):
def deepsea_pca(n_components: int, deepsea_file: str, pca_object: str, out_dir: str):
logger.info("Loading deepSea data")
df = pd.read_csv(deepsea_file)
logger.info("filling NAs")
Expand Down

0 comments on commit e65e2c6

Please sign in to comment.