Skip to content

Commit

Permalink
Add default to input_configfile param (#535)
Browse files Browse the repository at this point in the history
* Adds default to input_configfile param

* Add default value to method signature override

---------

Co-authored-by: Brian Koopman <[email protected]>
  • Loading branch information
jlashner and BrianJKoopman authored Nov 15, 2024
1 parent 84db894 commit ae733af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions socs/agents/lakeshore372/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -1258,9 +1258,9 @@ def get_still_output(self, session, params=None):

return True, "Current still output is {}".format(still_output)

@ocs_agent.param('configfile', type=str)
@ocs_agent.param('configfile', type=str, default=None)
def input_configfile(self, session, params=None):
"""input_configfile(configfile)
"""input_configfile(configfile=None)
**Task** - Upload 372 configuration file to initialize channel/device
settings.
Expand Down

0 comments on commit ae733af

Please sign in to comment.