Skip to content

Commit

Permalink
strange default not to use rpm
Browse files Browse the repository at this point in the history
  • Loading branch information
CamDavidsonPilon committed Jul 8, 2023
1 parent 6b39cf0 commit e46b39a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion pioreactor/actions/self_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ def test_REF_is_in_correct_position(
signal2 = []

with stirring.start_stirring(
target_rpm=900, unit=unit, experiment=experiment
target_rpm=900,
unit=unit,
experiment=experiment,
) as st, start_od_reading(
od_angle_channel1="90",
od_angle_channel2="90",
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 @@ -459,7 +459,7 @@ def start_stirring(
target_rpm: float,
unit: Optional[str] = None,
experiment: Optional[str] = None,
use_rpm: bool = False,
use_rpm: bool = True,
) -> Stirrer:
unit = unit or get_unit_name()
experiment = experiment or get_latest_experiment_name()
Expand Down

0 comments on commit e46b39a

Please sign in to comment.