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
This is a similar issue with #137
Specifically, I have defined an Enum object as follows:
class out_format(Enum):
h5ad = "--h5ad"
loom = "--loom"
raw = "raw"
However, when using latch get-params, the command appears to redefine the Enum names as the same with the Enum values, resulting in an incorrect format name:
class out_format(Enum):
--h5ad = '--h5ad'
--loom = '--loom'
raw = 'raw'
It would be beneficial to retain the original Enum names. I am not certain if the original Enum names are stored, as they were not found in the response variable of the _launch_workflow function.
This is a similar issue with #137
Specifically, I have defined an Enum object as follows:
However, when using
latch get-params
, the command appears to redefine the Enum names as the same with the Enum values, resulting in an incorrect format name:here is the line:
latch/latch_cli/services/get_params.py
Lines 142 to 145 in 251a5b1
It would be beneficial to retain the original Enum names. I am not certain if the original Enum names are stored, as they were not found in the
response
variable of the_launch_workflow
function.latch/latch_cli/services/launch.py
Line 215 in 251a5b1
The text was updated successfully, but these errors were encountered: