qmenta-client 2.1.dev1509__tar.gz → 2.1.dev1511__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: qmenta-client
3
- Version: 2.1.dev1509
3
+ Version: 2.1.dev1511
4
4
  Summary: Python client lib to interact with the QMENTA platform.
5
5
  Author: QMENTA
6
6
  Author-email: dev@qmenta.com
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "qmenta-client"
3
- version = "2.1.dev1509"
3
+ version = "2.1.dev1511"
4
4
  description = "Python client lib to interact with the QMENTA platform."
5
5
  authors = ["QMENTA <dev@qmenta.com>"]
6
6
  homepage = "https://www.qmenta.com/"
@@ -2789,13 +2789,15 @@ class Project:
2789
2789
  # logging any warning that we have
2790
2790
  if choose_data.warning:
2791
2791
  has_warning = True
2792
- logger.warning(response["warning"])
2792
+ logger.warning(choose_data.warning)
2793
2793
 
2794
2794
  new_post = {
2795
2795
  "analysis_id": choose_data.analysis_id,
2796
2796
  "script_name": post_data["script_name"],
2797
2797
  "version": post_data["version"],
2798
2798
  }
2799
+ if "tags" in post_data.keys():
2800
+ new_post["tags"] = post_data["tags"]
2799
2801
 
2800
2802
  if choose_data.data_to_choose:
2801
2803
  self.__handle_manual_choose_data(new_post, choose_data)