diff --git a/CHANGELOG.rst b/CHANGELOG.rst index bb18900..4849888 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -23,9 +23,14 @@ and this project adheres to `Semantic Versioning  REMOVED ` .. Placeholder for empty Unreleased section: - * No contributions yet. :doc:`Be the first to add one! `_ :) + * No contributions yet. :doc:`Be the first to add one! ` :) Unreleased +------------------------------------------------------------------------------ + + * No contributions yet. :doc:`Be the first to add one! ` :) + +1.0.0 (2021-12-13) ------------------------------------------------------------------------------ * |Feature| Add training metadata reporting and querying, diff --git a/mllaunchpad/api.py b/mllaunchpad/api.py index 7c34730..d161f67 100644 --- a/mllaunchpad/api.py +++ b/mllaunchpad/api.py @@ -89,7 +89,7 @@ def _create_request_parser(resource_obj): # https://help.mulesoft.com/s/article/Repeat-query-parameters-using-RAML-1-0 try: - param_type, arr = p.type.split("[]") + param_type, _ = p.type.split("[]") is_array = True except ValueError: param_type = p.type diff --git a/setup.cfg b/setup.cfg index ff57c14..efc6e7f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -35,7 +35,7 @@ filterwarnings = [metadata] name = mllaunchpad -version = 1.0.0 +version = 1.1.0 url = https://github.com/schuderer/mllaunchpad/ project_urls = Documentation = https://mllaunchpad.readthedocs.io/