Skip to content

Commit de34528

Browse files
committed
Update cli.py
Forgot to get value from enum class
1 parent 69d0742 commit de34528

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/wristpy/core/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def main(
154154
epoch_length=epoch_length,
155155
nonwear_algorithm=nonwear_algorithms, # type: ignore[arg-type] # Covered by NonwearAlgorithm Enum class
156156
verbosity=log_level,
157-
output_filetype=output_filetype, # type: ignore[arg-type] # Covered by OutputFileType Enum class
157+
output_filetype=output_filetype.value, # type: ignore[arg-type] # Covered by OutputFileType Enum class
158158
)
159159

160160

0 commit comments

Comments
 (0)