Skip to content

Commit

Permalink
fix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
gmegh committed Oct 25, 2024
1 parent a61c380 commit 31e38eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/lsst/ts/standardscripts/maintel/base_close_loop.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def get_schema(cls) -> typing.Dict[str, typing.Any]:
Apply OFC corrections after each iteration.
type: boolean
default: true
ocps:
use_ocps:
description: >-
Use OCPS to run the wavefront estimation pipeline.
type: boolean
Expand Down Expand Up @@ -256,7 +256,7 @@ async def configure(self, config: types.SimpleNamespace) -> None:

# Set WEP configuration file
self.wep_config = config.wep_config
self.wep_config.useOCPS = config.ocps
self.wep_config.useOCPS = config.use_ocps

# Set used dofs
selected_dofs = config.used_dofs
Expand Down

0 comments on commit 31e38eb

Please sign in to comment.