brynq-sdk-monday 1.2.1__tar.gz → 1.2.2__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: 1.0
2
2
  Name: brynq_sdk_monday
3
- Version: 1.2.1
3
+ Version: 1.2.2
4
4
  Summary: Monday.com wrapper from BrynQ
5
5
  Home-page: UNKNOWN
6
6
  Author: BrynQ
@@ -215,7 +215,7 @@ class ExtractMonday(BrynQ):
215
215
  :param item_ids: all the items where you want to get the column values from
216
216
  """
217
217
  # Chunk in lists of 50 items since monday.com doesn't accept requests longer than 50 items
218
- items_list = (item_ids[pos:pos + 25] for pos in range(0, len(item_ids), 25))
218
+ items_list = [item_ids[pos:pos + 25] for pos in range(0, len(item_ids), 25)]
219
219
  all_data = []
220
220
 
221
221
  for chunk in items_list:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.0
2
2
  Name: brynq-sdk-monday
3
- Version: 1.2.1
3
+ Version: 1.2.2
4
4
  Summary: Monday.com wrapper from BrynQ
5
5
  Home-page: UNKNOWN
6
6
  Author: BrynQ
@@ -2,7 +2,7 @@ from setuptools import setup, find_namespace_packages
2
2
 
3
3
  setup(
4
4
  name='brynq_sdk_monday',
5
- version='1.2.1',
5
+ version='1.2.2',
6
6
  description='Monday.com wrapper from BrynQ',
7
7
  long_description='Monday.com wrapper from BrynQ',
8
8
  author='BrynQ',