Skip to content

Commit

Permalink
Bugfix models update-training (#112)
Browse files Browse the repository at this point in the history
* Bugfix models update-training

* Updates
  • Loading branch information
augustak authored Jun 13, 2024
1 parent 83acc12 commit c601855
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Version 13.2.2 - 2024-06-13

- Bugfix `models update-training` now works as intended when specifying `--deployment-environment-id`

## Version 13.2.1 - 2024-02-20

- Bugfix `models update-training` no longer attempts to send `null` for `metadata` when not specified
Expand Down
2 changes: 1 addition & 1 deletion lascli/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
__maintainer_email__ = 'magnus@lucidtech.ai'
__title__ = 'lucidtech-las-cli'
__url__ = 'https://github.com/LucidtechAI/las-cli'
__version__ = '13.2.1'
__version__ = '13.2.2'
2 changes: 1 addition & 1 deletion lascli/parser/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def create_models_parser(subparsers):
help='path to json file with custom metadata, maximum limit 4kB',
default=NotProvided,
)
update_training_parser.add_argument('--deployment-environment-id', type=nullable, default=NotProvided)
update_training_parser.add_argument('--deployment-environment-id', type=nullable(str), default=NotProvided)
update_training_parser.set_defaults(cmd=update_training)

return parser

0 comments on commit c601855

Please sign in to comment.