lazyad 0.0.33__tar.gz → 0.0.34__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.

Potentially problematic release.


This version of lazyad might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: lazyad
3
- Version: 0.0.33
3
+ Version: 0.0.34
4
4
  Summary: 基于Python的懒人包-适用于广告投放模块
5
5
  Home-page: https://gitee.com/ZeroSeeker/lazyad
6
6
  Author: ZeroSeeker
@@ -675,7 +675,14 @@ def update_budget_batch(
675
675
  }
676
676
  ]
677
677
  elif media_account_ids:
678
- inner_data = list(map(lambda x: {"media_account_id": x, "daily_budget": daily_budget}, media_account_ids))
678
+ inner_data = list()
679
+ for media_account_id_ in media_account_ids:
680
+ inner_data.append(
681
+ {
682
+ "media_account_id": media_account_id_,
683
+ "daily_budget": daily_budget
684
+ }
685
+ )
679
686
  else:
680
687
  return
681
688
  data = {
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: lazyad
3
- Version: 0.0.33
3
+ Version: 0.0.34
4
4
  Summary: 基于Python的懒人包-适用于广告投放模块
5
5
  Home-page: https://gitee.com/ZeroSeeker/lazyad
6
6
  Author: ZeroSeeker
@@ -13,7 +13,7 @@ with open("README.md", "r", encoding='utf-8') as fh:
13
13
 
14
14
  setuptools.setup(
15
15
  name="lazyad",
16
- version="0.0.33",
16
+ version="0.0.34",
17
17
  description="基于Python的懒人包-适用于广告投放模块",
18
18
  long_description=long_description,
19
19
  long_description_content_type="text/markdown",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes