Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
CamDavidsonPilon committed Nov 7, 2023
1 parent 5f98ea3 commit 9dc8e1b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pioreactor/actions/leader/experiment_profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ def click_experiment_profile():


@click_experiment_profile.command(name="execute")
@click.argument("filename", type=click.Path(exists=True))
@click.argument("filename", type=click.Path())
@click.option("--dry-run", is_flag=True, help="Don't actually execute, just print to screen")
def click_execute_experiment_profile(filename: str, dry_run: bool) -> None:
"""
Expand All @@ -384,7 +384,7 @@ def click_execute_experiment_profile(filename: str, dry_run: bool) -> None:


@click_experiment_profile.command(name="verify")
@click.argument("filename", type=click.Path(exists=True))
@click.argument("filename", type=click.Path())
def click_verify_experiment_profile(filename: str) -> None:
"""
(leader only) Verify an experiment profile for correctness.
Expand Down
2 changes: 1 addition & 1 deletion pioreactor/background_jobs/stirring.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def __init__(
experiment=self.experiment,
job_name=self.job_name,
target_name="rpm",
output_limits=(-10, 10), # avoid whiplashing
output_limits=(-7.5, 7.5), # avoid whiplashing
)

# set up thread to periodically check the rpm
Expand Down

0 comments on commit 9dc8e1b

Please sign in to comment.