Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-f-cruz committed Dec 14, 2024
1 parent 0dde578 commit d68c718
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/aind_behavior_experiment_launcher/launcher/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,9 @@ def _solve_schema_instances(
self, rig_path_path: Optional[os.PathLike] = None, task_logic_path: Optional[os.PathLike] = None
) -> None:
rig_path_path = self._cli_args.rig_path if self._cli_args.rig_path is not None else rig_path_path
task_logic_path = self._cli_args.task_logic_path if self._cli_args.task_logic_path is not None else task_logic_path
task_logic_path = (
self._cli_args.task_logic_path if self._cli_args.task_logic_path is not None else task_logic_path
)
if rig_path_path is not None:
logging.info("Loading rig schema from %s", self._cli_args.rig_path)
self._rig_schema = model_from_json_file(rig_path_path, self.rig_schema_model)
Expand Down

0 comments on commit d68c718

Please sign in to comment.