You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Certain Serpent2 cards have optional parameters. For example, the pop card has the following parameters:
set pop NPG NGEN NSKIP [ K0 BTCH NEIG ]
The bracketed values are optional. In the current implementation of SaltProc, a user using these optional parameters on the set pop card will get a ValueError: too many values to unpack on line 90 in serpent_depcode.py
Description of idea
We should add control flow to handle these optional inputs.
Implementation details
We will need to:
Identify which cards SaltProc interacts with directly
Implement control flow to handle any optional parameters
Potential snags
None
The text was updated successfully, but these errors were encountered:
Background and motivation
Certain Serpent2 cards have optional parameters. For example, the
pop
card has the following parameters:The bracketed values are optional. In the current implementation of SaltProc, a user using these optional parameters on the
set pop
card will get aValueError: too many values to unpack
on line 90 inserpent_depcode.py
Description of idea
We should add control flow to handle these optional inputs.
Implementation details
We will need to:
Potential snags
None
The text was updated successfully, but these errors were encountered: